| 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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 sources = [ | 265 sources = [ |
| 266 "../public/test/test_mojo_service.mojom", | 266 "../public/test/test_mojo_service.mojom", |
| 267 "test_browser_associated_interfaces.mojom", | 267 "test_browser_associated_interfaces.mojom", |
| 268 ] | 268 ] |
| 269 } | 269 } |
| 270 | 270 |
| 271 mojom("web_ui_test_mojo_bindings") { | 271 mojom("web_ui_test_mojo_bindings") { |
| 272 sources = [ | 272 sources = [ |
| 273 "data/web_ui_test_mojo_bindings.mojom", | 273 "data/web_ui_test_mojo_bindings.mojom", |
| 274 ] | 274 ] |
| 275 | |
| 276 use_new_wrapper_types = false | |
| 277 } | 275 } |
| 278 | 276 |
| 279 # GYP version //content/content_tests.gypi:layouttest_support_content | 277 # GYP version //content/content_tests.gypi:layouttest_support_content |
| 280 static_library("layouttest_support") { | 278 static_library("layouttest_support") { |
| 281 testonly = true | 279 testonly = true |
| 282 | 280 |
| 283 # See comment at the top of //content/BUILD.gn for why this is disabled in | 281 # See comment at the top of //content/BUILD.gn for why this is disabled in |
| 284 # component builds. | 282 # component builds. |
| 285 if (is_component_build) { | 283 if (is_component_build) { |
| 286 check_includes = false | 284 check_includes = false |
| (...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 903 if (is_android) { | 901 if (is_android) { |
| 904 deps += [ "//testing/android/native_test:native_test_native_code" ] | 902 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 905 } | 903 } |
| 906 } | 904 } |
| 907 | 905 |
| 908 group("fuzzers") { | 906 group("fuzzers") { |
| 909 deps = [ | 907 deps = [ |
| 910 "//content/test/fuzzer", | 908 "//content/test/fuzzer", |
| 911 ] | 909 ] |
| 912 } | 910 } |
| OLD | NEW |