| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 ] | 357 ] |
| 358 public_deps = [ | 358 public_deps = [ |
| 359 ":blob_channel_mojo", | 359 ":blob_channel_mojo", |
| 360 ] | 360 ] |
| 361 } | 361 } |
| 362 | 362 |
| 363 mojom("blob_channel_mojo") { | 363 mojom("blob_channel_mojo") { |
| 364 sources = [ | 364 sources = [ |
| 365 "mojo/blob_channel.mojom", | 365 "mojo/blob_channel.mojom", |
| 366 ] | 366 ] |
| 367 | |
| 368 use_new_wrapper_types = false | |
| 369 } | 367 } |
| 370 | 368 |
| 371 source_set("test_support") { | 369 source_set("test_support") { |
| 372 testonly = true | 370 testonly = true |
| 373 | 371 |
| 374 sources = [ | 372 sources = [ |
| 375 "app/test_content_main_delegate.cc", | 373 "app/test_content_main_delegate.cc", |
| 376 "app/test_content_main_delegate.h", | 374 "app/test_content_main_delegate.h", |
| 377 ] | 375 ] |
| 378 | 376 |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 683 "//content/test:test_support", | 681 "//content/test:test_support", |
| 684 "//testing/gmock", | 682 "//testing/gmock", |
| 685 "//testing/gtest", | 683 "//testing/gtest", |
| 686 ] | 684 ] |
| 687 | 685 |
| 688 data = [ | 686 data = [ |
| 689 "//blimp/test/data/", | 687 "//blimp/test/data/", |
| 690 "$root_out_dir/blimp_engine.pak", | 688 "$root_out_dir/blimp_engine.pak", |
| 691 ] | 689 ] |
| 692 } | 690 } |
| OLD | NEW |