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 |
367 } | 369 } |
368 | 370 |
369 source_set("test_support") { | 371 source_set("test_support") { |
370 testonly = true | 372 testonly = true |
371 | 373 |
372 sources = [ | 374 sources = [ |
373 "app/test_content_main_delegate.cc", | 375 "app/test_content_main_delegate.cc", |
374 "app/test_content_main_delegate.h", | 376 "app/test_content_main_delegate.h", |
375 ] | 377 ] |
376 | 378 |
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
680 "//content/test:test_support", | 682 "//content/test:test_support", |
681 "//testing/gmock", | 683 "//testing/gmock", |
682 "//testing/gtest", | 684 "//testing/gtest", |
683 ] | 685 ] |
684 | 686 |
685 data = [ | 687 data = [ |
686 "//blimp/test/data/", | 688 "//blimp/test/data/", |
687 "$root_out_dir/blimp_engine.pak", | 689 "$root_out_dir/blimp_engine.pak", |
688 ] | 690 ] |
689 } | 691 } |
OLD | NEW |