| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("../../../mojo/public/tools/bindings/mojom.gni") | 7 import("../../../mojo/public/tools/bindings/mojom.gni") |
| 8 | 8 |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 "watcher.cc", | 71 "watcher.cc", |
| 72 "watcher.h", | 72 "watcher.h", |
| 73 "watcher_set.cc", | 73 "watcher_set.cc", |
| 74 "watcher_set.h", | 74 "watcher_set.h", |
| 75 ] | 75 ] |
| 76 | 76 |
| 77 defines = [ "MOJO_SYSTEM_IMPL_IMPLEMENTATION" ] | 77 defines = [ "MOJO_SYSTEM_IMPL_IMPLEMENTATION" ] |
| 78 | 78 |
| 79 public_deps = [ | 79 public_deps = [ |
| 80 "//mojo/edk/embedder", | 80 "//mojo/edk/embedder", |
| 81 "//mojo/edk/embedder:delegates", | |
| 82 "//mojo/edk/embedder:platform", | 81 "//mojo/edk/embedder:platform", |
| 83 "//mojo/edk/system/ports", | 82 "//mojo/edk/system/ports", |
| 84 "//mojo/public/c/system", | 83 "//mojo/public/c/system", |
| 85 "//mojo/public/cpp/system", | 84 "//mojo/public/cpp/system", |
| 86 ] | 85 ] |
| 87 | 86 |
| 88 deps = [ | 87 deps = [ |
| 89 "//base", | 88 "//base", |
| 90 ] | 89 ] |
| 91 | 90 |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 ":test_utils", | 205 ":test_utils", |
| 207 "//base", | 206 "//base", |
| 208 "//base/test:test_support", | 207 "//base/test:test_support", |
| 209 "//mojo/edk/system", | 208 "//mojo/edk/system", |
| 210 "//mojo/edk/test:run_all_perftests", | 209 "//mojo/edk/test:run_all_perftests", |
| 211 "//mojo/edk/test:test_support", | 210 "//mojo/edk/test:test_support", |
| 212 "//testing/gtest", | 211 "//testing/gtest", |
| 213 ] | 212 ] |
| 214 } | 213 } |
| 215 } | 214 } |
| OLD | NEW |