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("//build_overrides/v8.gni") | 10 import("//build_overrides/v8.gni") |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 deps += [ "//content/public/browser" ] | 259 deps += [ "//content/public/browser" ] |
260 } | 260 } |
261 | 261 |
262 configs += [ "//v8:external_startup_data" ] | 262 configs += [ "//v8:external_startup_data" ] |
263 } | 263 } |
264 | 264 |
265 mojom("content_test_mojo_bindings") { | 265 mojom("content_test_mojo_bindings") { |
266 sources = [ | 266 sources = [ |
267 "../public/test/test_mojo_service.mojom", | 267 "../public/test/test_mojo_service.mojom", |
268 ] | 268 ] |
| 269 |
| 270 use_new_wrapper_types = false |
269 } | 271 } |
270 | 272 |
271 mojom("web_ui_test_mojo_bindings") { | 273 mojom("web_ui_test_mojo_bindings") { |
272 sources = [ | 274 sources = [ |
273 "data/web_ui_test_mojo_bindings.mojom", | 275 "data/web_ui_test_mojo_bindings.mojom", |
274 ] | 276 ] |
| 277 |
| 278 use_new_wrapper_types = false |
275 } | 279 } |
276 | 280 |
277 # GYP version //content/content_tests.gypi:layouttest_support_content | 281 # GYP version //content/content_tests.gypi:layouttest_support_content |
278 static_library("layouttest_support") { | 282 static_library("layouttest_support") { |
279 testonly = true | 283 testonly = true |
280 | 284 |
281 # See comment at the top of //content/BUILD.gn for why this is disabled in | 285 # See comment at the top of //content/BUILD.gn for why this is disabled in |
282 # component builds. | 286 # component builds. |
283 if (is_component_build) { | 287 if (is_component_build) { |
284 check_includes = false | 288 check_includes = false |
(...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
913 "renderer_fuzzer.cc", | 917 "renderer_fuzzer.cc", |
914 ] | 918 ] |
915 deps = [ | 919 deps = [ |
916 ":test_support", | 920 ":test_support", |
917 "//content/renderer:for_content_tests", | 921 "//content/renderer:for_content_tests", |
918 "//content/shell:content_shell_lib", | 922 "//content/shell:content_shell_lib", |
919 "//gin", | 923 "//gin", |
920 ] | 924 ] |
921 dict = "data/fuzzer_dictionaries/renderer_fuzzer.dict" | 925 dict = "data/fuzzer_dictionaries/renderer_fuzzer.dict" |
922 } | 926 } |
OLD | NEW |