| 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/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 sources = [ | 465 sources = [ |
| 466 "../public/test/test_service.mojom", | 466 "../public/test/test_service.mojom", |
| 467 "test_browser_associated_interfaces.mojom", | 467 "test_browser_associated_interfaces.mojom", |
| 468 ] | 468 ] |
| 469 } | 469 } |
| 470 | 470 |
| 471 mojom("web_ui_test_mojo_bindings") { | 471 mojom("web_ui_test_mojo_bindings") { |
| 472 sources = [ | 472 sources = [ |
| 473 "data/web_ui_test_mojo_bindings.mojom", | 473 "data/web_ui_test_mojo_bindings.mojom", |
| 474 ] | 474 ] |
| 475 |
| 476 # TODO(crbug.com/699569): Convert to use the new JS bindings. |
| 477 use_new_js_bindings = false |
| 475 } | 478 } |
| 476 | 479 |
| 477 static_library("layouttest_support") { | 480 static_library("layouttest_support") { |
| 478 testonly = true | 481 testonly = true |
| 479 | 482 |
| 480 # See comment at the top of //content/BUILD.gn for why this is disabled in | 483 # See comment at the top of //content/BUILD.gn for why this is disabled in |
| 481 # component builds. | 484 # component builds. |
| 482 if (is_component_build) { | 485 if (is_component_build) { |
| 483 check_includes = false | 486 check_includes = false |
| 484 } | 487 } |
| (...skipping 1379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1864 if (is_android) { | 1867 if (is_android) { |
| 1865 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1868 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1866 } | 1869 } |
| 1867 } | 1870 } |
| 1868 | 1871 |
| 1869 group("fuzzers") { | 1872 group("fuzzers") { |
| 1870 deps = [ | 1873 deps = [ |
| 1871 "//content/test/fuzzer", | 1874 "//content/test/fuzzer", |
| 1872 ] | 1875 ] |
| 1873 } | 1876 } |
| OLD | NEW |