BUILD.gn 3.9 KB
Newer Older
1 2 3 4 5
# Copyright 2017 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

source_set("fml") {
6
  sources = [
7 8 9
    "build_config.h",
    "compiler_specific.h",
    "eintr_wrapper.h",
10
    "export.h",
11
    "file.h",
12 13
    "icu_util.cc",
    "icu_util.h",
14 15 16 17 18 19
    "log_level.h",
    "log_settings.cc",
    "log_settings.h",
    "log_settings_state.cc",
    "logging.cc",
    "logging.h",
20
    "mapping.cc",
21
    "mapping.h",
22 23 24 25
    "memory/ref_counted.h",
    "memory/ref_counted_internal.h",
    "memory/ref_ptr.h",
    "memory/ref_ptr_internal.h",
26 27 28 29
    "memory/thread_checker.h",
    "memory/weak_ptr.h",
    "memory/weak_ptr_internal.cc",
    "memory/weak_ptr_internal.h",
30 31 32 33
    "message_loop.cc",
    "message_loop.h",
    "message_loop_impl.cc",
    "message_loop_impl.h",
34 35
    "native_library.h",
    "paths.cc",
36
    "paths.h",
37 38 39 40 41 42 43
    "task_runner.cc",
    "task_runner.h",
    "thread.cc",
    "thread.h",
    "thread_local.h",
    "trace_event.cc",
    "trace_event.h",
44 45 46
    "unique_fd.cc",
    "unique_fd.h",
    "unique_object.h",
47 48 49
  ]

  deps = [
50
    "//garnet/public/lib/fxl",
51
    "//third_party/dart/runtime:dart_api",
52 53 54 55 56 57 58

    # These need to be in sync with the Fuchsia buildroot.
    "//third_party/icu",
  ]

  configs += [ "//third_party/icu:icu_config" ]

59
  public_configs = [ "$flutter_root:config" ]
60

61
  libs = []
62 63

  if (is_ios || is_mac) {
64 65 66 67 68
    sources += [
      "platform/darwin/cf_utils.cc",
      "platform/darwin/cf_utils.h",
      "platform/darwin/message_loop_darwin.h",
      "platform/darwin/message_loop_darwin.mm",
69
      "platform/darwin/paths_darwin.mm",
70 71
      "platform/darwin/platform_version.h",
      "platform/darwin/platform_version.mm",
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
      "platform/darwin/resource_mapping_darwin.h",
      "platform/darwin/resource_mapping_darwin.mm",
      "platform/darwin/scoped_block.h",
      "platform/darwin/scoped_block.mm",
      "platform/darwin/scoped_nsobject.h",
      "platform/darwin/scoped_nsobject.mm",
    ]

    libs += [ "Foundation.framework" ]
  }

  if (is_android) {
    sources += [
      "platform/android/jni_util.cc",
      "platform/android/jni_util.h",
      "platform/android/jni_weak_ref.cc",
      "platform/android/jni_weak_ref.h",
      "platform/android/message_loop_android.cc",
      "platform/android/message_loop_android.h",
91
      "platform/android/paths_android.cc",
92 93 94 95 96
      "platform/android/scoped_java_ref.cc",
      "platform/android/scoped_java_ref.h",
    ]

    libs += [ "android" ]
97
  }
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112

  if (is_android) {
    # Don't filter away these Linux sources on Android.
    set_sources_assignment_filter([])
    sources += [
      "platform/linux/timerfd.cc",
      "platform/linux/timerfd.h",
    ]
    set_sources_assignment_filter(sources_assignment_filter)
  }

  if (is_linux) {
    sources += [
      "platform/linux/message_loop_linux.cc",
      "platform/linux/message_loop_linux.h",
113
      "platform/linux/paths_linux.cc",
114 115 116 117
      "platform/linux/timerfd.cc",
      "platform/linux/timerfd.h",
    ]
  }
118

119 120 121 122
  if (is_fuchsia) {
    sources += [ "platform/fuchsia/paths_fuchsia.cc" ]
  }

123 124
  if (is_win) {
    sources += [
125
      "platform/win/file_win.cc",
126
      "platform/win/mapping_win.cc",
127 128
      "platform/win/message_loop_win.cc",
      "platform/win/message_loop_win.h",
129
      "platform/win/native_library_win.cc",
130
      "platform/win/paths_win.cc",
131
      "platform/win/wstring_conversion.h",
132
    ]
133 134
  } else {
    sources += [
135
      "platform/posix/file_posix.cc",
136
      "platform/posix/mapping_posix.cc",
137
      "platform/posix/native_library_posix.cc",
138
    ]
139
  }
140 141 142 143 144 145
}

executable("fml_unittests") {
  testonly = true

  sources = [
146
    "memory/ref_counted_unittest.cc",
147
    "memory/weak_ptr_unittest.cc",
148 149 150 151 152 153
    "message_loop_unittests.cc",
    "thread_local_unittests.cc",
    "thread_unittests.cc",
  ]

  deps = [
154 155
    "$flutter_root/fml",
    "$flutter_root/testing",
156
    "//garnet/public/lib/fxl",
157
    "//third_party/dart/runtime:libdart_jit",
158
  ]
159
}