Chromium Code Reviews| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 357 | 357 |
| 358 if (is_win) { | 358 if (is_win) { |
| 359 deps += [ "//sandbox" ] | 359 deps += [ "//sandbox" ] |
| 360 } | 360 } |
| 361 | 361 |
| 362 if (v8_use_external_startup_data) { | 362 if (v8_use_external_startup_data) { |
| 363 deps += [ "//gin:gin" ] | 363 deps += [ "//gin:gin" ] |
| 364 } | 364 } |
| 365 | 365 |
| 366 if (is_mac) { | 366 if (is_mac) { |
| 367 sources += [ "../public/test/text_input_test_utils_mac.mm" ] | |
|
Avi (use Gerrit)
2016/10/07 21:11:26
I think you can put this into the normal sources s
EhsanK
2016/10/11 19:31:56
Acknowledged.
| |
| 367 deps += [ "//ui/accelerated_widget_mac" ] | 368 deps += [ "//ui/accelerated_widget_mac" ] |
| 368 } | 369 } |
| 369 } | 370 } |
| 370 | 371 |
| 371 # browsertest_support can be used by targets that run content_shell based | 372 # browsertest_support can be used by targets that run content_shell based |
| 372 # browser tests. | 373 # browser tests. |
| 373 static_library("browsertest_support") { | 374 static_library("browsertest_support") { |
| 374 testonly = true | 375 testonly = true |
| 375 | 376 |
| 376 # See comment at the top of //content/BUILD.gn for why this is disabled in | 377 # See comment at the top of //content/BUILD.gn for why this is disabled in |
| (...skipping 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1701 if (is_android) { | 1702 if (is_android) { |
| 1702 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1703 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1703 } | 1704 } |
| 1704 } | 1705 } |
| 1705 | 1706 |
| 1706 group("fuzzers") { | 1707 group("fuzzers") { |
| 1707 deps = [ | 1708 deps = [ |
| 1708 "//content/test/fuzzer", | 1709 "//content/test/fuzzer", |
| 1709 ] | 1710 ] |
| 1710 } | 1711 } |
| OLD | NEW |