| 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 } else { | 257 } else { |
| 258 deps += [ "//content/public/browser" ] | 258 deps += [ "//content/public/browser" ] |
| 259 } | 259 } |
| 260 | 260 |
| 261 configs += [ "//v8:external_startup_data" ] | 261 configs += [ "//v8:external_startup_data" ] |
| 262 } | 262 } |
| 263 | 263 |
| 264 mojom("content_test_mojo_bindings") { | 264 mojom("content_test_mojo_bindings") { |
| 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 ] | 268 ] |
| 268 | |
| 269 use_new_wrapper_types = false | |
| 270 } | 269 } |
| 271 | 270 |
| 272 mojom("web_ui_test_mojo_bindings") { | 271 mojom("web_ui_test_mojo_bindings") { |
| 273 sources = [ | 272 sources = [ |
| 274 "data/web_ui_test_mojo_bindings.mojom", | 273 "data/web_ui_test_mojo_bindings.mojom", |
| 275 ] | 274 ] |
| 276 | 275 |
| 277 use_new_wrapper_types = false | 276 use_new_wrapper_types = false |
| 278 } | 277 } |
| 279 | 278 |
| (...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 904 if (is_android) { | 903 if (is_android) { |
| 905 deps += [ "//testing/android/native_test:native_test_native_code" ] | 904 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 906 } | 905 } |
| 907 } | 906 } |
| 908 | 907 |
| 909 group("fuzzers") { | 908 group("fuzzers") { |
| 910 deps = [ | 909 deps = [ |
| 911 "//content/test/fuzzer", | 910 "//content/test/fuzzer", |
| 912 ] | 911 ] |
| 913 } | 912 } |
| OLD | NEW |