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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 "//mojo/edk/embedder", | 81 "//mojo/edk/embedder", |
82 "//mojo/edk/embedder:delegates", | 82 "//mojo/edk/embedder:delegates", |
83 "//mojo/edk/embedder:platform", | 83 "//mojo/edk/embedder:platform", |
84 "//mojo/edk/system/ports", | 84 "//mojo/edk/system/ports", |
85 "//mojo/public/c/system", | 85 "//mojo/public/c/system", |
86 "//mojo/public/cpp/system", | 86 "//mojo/public/cpp/system", |
87 ] | 87 ] |
88 | 88 |
89 deps = [ | 89 deps = [ |
90 "//base", | 90 "//base", |
91 "//base/third_party/dynamic_annotations", | |
92 ] | 91 ] |
93 | 92 |
94 if (!is_nacl) { | 93 if (!is_nacl) { |
95 deps += [ "//crypto" ] | 94 deps += [ "//crypto" ] |
96 } | 95 } |
97 | 96 |
98 if (is_win) { | 97 if (is_win) { |
99 cflags = [ "/wd4324" ] # Structure was padded due to __declspec(align()), | 98 cflags = [ "/wd4324" ] # Structure was padded due to __declspec(align()), |
100 # which is uninteresting. | 99 # which is uninteresting. |
101 } | 100 } |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 ":test_utils", | 201 ":test_utils", |
203 "//base", | 202 "//base", |
204 "//base/test:test_support", | 203 "//base/test:test_support", |
205 "//mojo/edk/system", | 204 "//mojo/edk/system", |
206 "//mojo/edk/test:run_all_perftests", | 205 "//mojo/edk/test:run_all_perftests", |
207 "//mojo/edk/test:test_support", | 206 "//mojo/edk/test:test_support", |
208 "//testing/gtest", | 207 "//testing/gtest", |
209 ] | 208 ] |
210 } | 209 } |
211 } | 210 } |
OLD | NEW |