| 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("../mojo_edk.gni") | 5 import("../mojo_edk.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/config.gni") | 9 import("//build/config/android/config.gni") |
| 10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 | 112 |
| 113 mojo_edk_public_deps = [ | 113 mojo_edk_public_deps = [ |
| 114 "mojo/edk/embedder", | 114 "mojo/edk/embedder", |
| 115 "mojo/edk/embedder:delegates", | 115 "mojo/edk/embedder:delegates", |
| 116 "mojo/edk/embedder:platform", | 116 "mojo/edk/embedder:platform", |
| 117 "mojo/edk/platform", | 117 "mojo/edk/platform", |
| 118 "mojo/edk/util", | 118 "mojo/edk/util", |
| 119 ] | 119 ] |
| 120 | 120 |
| 121 mojo_sdk_public_deps = [ | 121 mojo_sdk_public_deps = [ |
| 122 "mojo/public/c:system", |
| 122 "mojo/public/c/system", | 123 "mojo/public/c/system", |
| 123 "mojo/public/cpp/system", | 124 "mojo/public/cpp/system", |
| 124 ] | 125 ] |
| 125 | 126 |
| 126 deps = [ | 127 deps = [ |
| 127 "//base", | 128 "//base", |
| 128 "//base/third_party/dynamic_annotations", | 129 "//base/third_party/dynamic_annotations", |
| 129 ] | 130 ] |
| 130 | 131 |
| 131 allow_circular_includes_from = [ "../embedder" ] | 132 allow_circular_includes_from = [ "../embedder" ] |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 # TODO(vtl): Add separate test targets for this. | 214 # TODO(vtl): Add separate test targets for this. |
| 214 "mojo/edk/util:perftests", | 215 "mojo/edk/util:perftests", |
| 215 | 216 |
| 216 "mojo/edk/base_edk", | 217 "mojo/edk/base_edk", |
| 217 "mojo/edk/base_edk:test_base_edk", | 218 "mojo/edk/base_edk:test_base_edk", |
| 218 "mojo/edk/system/test", | 219 "mojo/edk/system/test", |
| 219 "mojo/edk/system/test:perf", | 220 "mojo/edk/system/test:perf", |
| 220 "mojo/edk/test:test_support", | 221 "mojo/edk/test:test_support", |
| 221 ] | 222 ] |
| 222 } | 223 } |
| OLD | NEW |