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