| 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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 456   } | 456   } | 
| 457 | 457 | 
| 458   configs += [ "//v8:external_startup_data" ] | 458   configs += [ "//v8:external_startup_data" ] | 
| 459 } | 459 } | 
| 460 | 460 | 
| 461 mojom("content_test_mojo_bindings") { | 461 mojom("content_test_mojo_bindings") { | 
| 462   sources = [ | 462   sources = [ | 
| 463     "../public/test/test_service.mojom", | 463     "../public/test/test_service.mojom", | 
| 464     "test_browser_associated_interfaces.mojom", | 464     "test_browser_associated_interfaces.mojom", | 
| 465   ] | 465   ] | 
| 466 |  | 
| 467   use_once_callback = true |  | 
| 468 } | 466 } | 
| 469 | 467 | 
| 470 mojom("web_ui_test_mojo_bindings") { | 468 mojom("web_ui_test_mojo_bindings") { | 
| 471   sources = [ | 469   sources = [ | 
| 472     "data/web_ui_test_mojo_bindings.mojom", | 470     "data/web_ui_test_mojo_bindings.mojom", | 
| 473   ] | 471   ] | 
| 474 |  | 
| 475   use_once_callback = true |  | 
| 476 } | 472 } | 
| 477 | 473 | 
| 478 static_library("layouttest_support") { | 474 static_library("layouttest_support") { | 
| 479   testonly = true | 475   testonly = true | 
| 480 | 476 | 
| 481   # See comment at the top of //content/BUILD.gn for why this is disabled in | 477   # See comment at the top of //content/BUILD.gn for why this is disabled in | 
| 482   # component builds. | 478   # component builds. | 
| 483   if (is_component_build) { | 479   if (is_component_build) { | 
| 484     check_includes = false | 480     check_includes = false | 
| 485   } | 481   } | 
| (...skipping 1351 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1837   if (is_android) { | 1833   if (is_android) { | 
| 1838     deps += [ "//testing/android/native_test:native_test_native_code" ] | 1834     deps += [ "//testing/android/native_test:native_test_native_code" ] | 
| 1839   } | 1835   } | 
| 1840 } | 1836 } | 
| 1841 | 1837 | 
| 1842 group("fuzzers") { | 1838 group("fuzzers") { | 
| 1843   deps = [ | 1839   deps = [ | 
| 1844     "//content/test/fuzzer", | 1840     "//content/test/fuzzer", | 
| 1845   ] | 1841   ] | 
| 1846 } | 1842 } | 
| OLD | NEW | 
|---|