| 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("//extensions/features/features.gni") | 11 import("//extensions/features/features.gni") |
| 12 import("//media/media_options.gni") | 12 import("//media/media_options.gni") |
| 13 import("//ppapi/features/features.gni") | 13 import("//ppapi/features/features.gni") |
| 14 import("//printing/features/features.gni") | 14 import("//printing/features/features.gni") |
| 15 import("//rlz/features/features.gni") |
| 15 import("//ui/base/ui_features.gni") | 16 import("//ui/base/ui_features.gni") |
| 16 | 17 |
| 17 config("ui_warnings") { | 18 config("ui_warnings") { |
| 18 if (is_clang) { | 19 if (is_clang) { |
| 19 # TODO(thakis): Remove this once http://crbug.com/383820 is figured out | 20 # TODO(thakis): Remove this once http://crbug.com/383820 is figured out |
| 20 cflags = [ "-Wno-nonnull" ] | 21 cflags = [ "-Wno-nonnull" ] |
| 21 } | 22 } |
| 22 } | 23 } |
| 23 | 24 |
| 24 # Use a static library here because many test binaries depend on this but don't | 25 # Use a static library here because many test binaries depend on this but don't |
| (...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 "//content/public/common", | 566 "//content/public/common", |
| 566 "//crypto", | 567 "//crypto", |
| 567 "//device/base", | 568 "//device/base", |
| 568 "//device/bluetooth/public/interfaces:experimental_interfaces", | 569 "//device/bluetooth/public/interfaces:experimental_interfaces", |
| 569 "//device/usb", | 570 "//device/usb", |
| 570 "//extensions/features", | 571 "//extensions/features", |
| 571 "//media", | 572 "//media", |
| 572 "//net:net_with_v8", | 573 "//net:net_with_v8", |
| 573 "//ppapi/features", | 574 "//ppapi/features", |
| 574 "//printing/features", | 575 "//printing/features", |
| 576 "//rlz/features", |
| 575 "//services/service_manager/runner/common", | 577 "//services/service_manager/runner/common", |
| 576 "//skia", | 578 "//skia", |
| 577 "//storage/browser", | 579 "//storage/browser", |
| 578 "//storage/common", | 580 "//storage/common", |
| 579 "//third_party/WebKit/public:features", | 581 "//third_party/WebKit/public:features", |
| 580 "//third_party/WebKit/public:resources", | 582 "//third_party/WebKit/public:resources", |
| 581 "//third_party/adobe/flash:flapper_version_h", | 583 "//third_party/adobe/flash:flapper_version_h", |
| 582 "//third_party/brotli", | 584 "//third_party/brotli", |
| 583 "//third_party/cacheinvalidation", | 585 "//third_party/cacheinvalidation", |
| 584 "//third_party/cld:cld_version", | 586 "//third_party/cld:cld_version", |
| (...skipping 2896 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3481 "test/test_confirm_bubble_model.cc", | 3483 "test/test_confirm_bubble_model.cc", |
| 3482 "test/test_confirm_bubble_model.h", | 3484 "test/test_confirm_bubble_model.h", |
| 3483 ] | 3485 ] |
| 3484 deps += [ "//chrome/test:test_support_ui" ] | 3486 deps += [ "//chrome/test:test_support_ui" ] |
| 3485 } | 3487 } |
| 3486 | 3488 |
| 3487 if (enable_extensions) { | 3489 if (enable_extensions) { |
| 3488 deps += [ "//extensions/browser" ] | 3490 deps += [ "//extensions/browser" ] |
| 3489 } | 3491 } |
| 3490 } | 3492 } |
| OLD | NEW |