| 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/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| 11 import("//media/media_options.gni") | 11 import("//media/media_options.gni") |
| 12 import("//printing/features/features.gni") |
| 12 | 13 |
| 13 config("ui_warnings") { | 14 config("ui_warnings") { |
| 14 if (is_clang) { | 15 if (is_clang) { |
| 15 # TODO(thakis): Remove this once http://crbug.com/383820 is figured out | 16 # TODO(thakis): Remove this once http://crbug.com/383820 is figured out |
| 16 cflags = [ "-Wno-nonnull" ] | 17 cflags = [ "-Wno-nonnull" ] |
| 17 } | 18 } |
| 18 } | 19 } |
| 19 | 20 |
| 20 # Use a static library here because many test binaries depend on this but don't | 21 # Use a static library here because many test binaries depend on this but don't |
| 21 # require many files from it. This makes linking more efficient. | 22 # require many files from it. This makes linking more efficient. |
| (...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 "//components/web_resource", | 558 "//components/web_resource", |
| 558 "//components/zoom", | 559 "//components/zoom", |
| 559 "//content/app/resources", | 560 "//content/app/resources", |
| 560 "//content/public/common", | 561 "//content/public/common", |
| 561 "//crypto", | 562 "//crypto", |
| 562 "//device/base", | 563 "//device/base", |
| 563 "//device/bluetooth/public/interfaces:experimental_interfaces", | 564 "//device/bluetooth/public/interfaces:experimental_interfaces", |
| 564 "//device/usb", | 565 "//device/usb", |
| 565 "//media", | 566 "//media", |
| 566 "//net:net_with_v8", | 567 "//net:net_with_v8", |
| 568 "//printing/features", |
| 567 "//services/service_manager/runner/common", | 569 "//services/service_manager/runner/common", |
| 568 "//skia", | 570 "//skia", |
| 569 "//storage/browser", | 571 "//storage/browser", |
| 570 "//storage/common", | 572 "//storage/common", |
| 571 "//third_party/WebKit/public:features", | 573 "//third_party/WebKit/public:features", |
| 572 "//third_party/WebKit/public:resources", | 574 "//third_party/WebKit/public:resources", |
| 573 "//third_party/adobe/flash:flapper_version_h", | 575 "//third_party/adobe/flash:flapper_version_h", |
| 574 "//third_party/brotli", | 576 "//third_party/brotli", |
| 575 "//third_party/cacheinvalidation", | 577 "//third_party/cacheinvalidation", |
| 576 "//third_party/cld:cld_version", | 578 "//third_party/cld:cld_version", |
| (...skipping 2861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3438 "test/test_confirm_bubble_model.cc", | 3440 "test/test_confirm_bubble_model.cc", |
| 3439 "test/test_confirm_bubble_model.h", | 3441 "test/test_confirm_bubble_model.h", |
| 3440 ] | 3442 ] |
| 3441 deps += [ "//chrome/test:test_support_ui" ] | 3443 deps += [ "//chrome/test:test_support_ui" ] |
| 3442 } | 3444 } |
| 3443 | 3445 |
| 3444 if (enable_extensions) { | 3446 if (enable_extensions) { |
| 3445 deps += [ "//extensions/browser" ] | 3447 deps += [ "//extensions/browser" ] |
| 3446 } | 3448 } |
| 3447 } | 3449 } |
| OLD | NEW |