| 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("//media/media_options.gni") | 12 import("//media/media_options.gni") |
| 12 import("//printing/features/features.gni") | 13 import("//printing/features/features.gni") |
| 13 | 14 |
| 14 config("ui_warnings") { | 15 config("ui_warnings") { |
| 15 if (is_clang) { | 16 if (is_clang) { |
| 16 # TODO(thakis): Remove this once http://crbug.com/383820 is figured out | 17 # TODO(thakis): Remove this once http://crbug.com/383820 is figured out |
| 17 cflags = [ "-Wno-nonnull" ] | 18 cflags = [ "-Wno-nonnull" ] |
| 18 } | 19 } |
| 19 } | 20 } |
| 20 | 21 |
| (...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 "//components/version_ui", | 557 "//components/version_ui", |
| 557 "//components/web_cache/browser", | 558 "//components/web_cache/browser", |
| 558 "//components/web_resource", | 559 "//components/web_resource", |
| 559 "//components/zoom", | 560 "//components/zoom", |
| 560 "//content/app/resources", | 561 "//content/app/resources", |
| 561 "//content/public/common", | 562 "//content/public/common", |
| 562 "//crypto", | 563 "//crypto", |
| 563 "//device/base", | 564 "//device/base", |
| 564 "//device/bluetooth/public/interfaces:experimental_interfaces", | 565 "//device/bluetooth/public/interfaces:experimental_interfaces", |
| 565 "//device/usb", | 566 "//device/usb", |
| 567 "//extensions/features", |
| 566 "//media", | 568 "//media", |
| 567 "//net:net_with_v8", | 569 "//net:net_with_v8", |
| 568 "//printing/features", | 570 "//printing/features", |
| 569 "//services/service_manager/runner/common", | 571 "//services/service_manager/runner/common", |
| 570 "//skia", | 572 "//skia", |
| 571 "//storage/browser", | 573 "//storage/browser", |
| 572 "//storage/common", | 574 "//storage/common", |
| 573 "//third_party/WebKit/public:features", | 575 "//third_party/WebKit/public:features", |
| 574 "//third_party/WebKit/public:resources", | 576 "//third_party/WebKit/public:resources", |
| 575 "//third_party/adobe/flash:flapper_version_h", | 577 "//third_party/adobe/flash:flapper_version_h", |
| (...skipping 2885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3461 "test/test_confirm_bubble_model.cc", | 3463 "test/test_confirm_bubble_model.cc", |
| 3462 "test/test_confirm_bubble_model.h", | 3464 "test/test_confirm_bubble_model.h", |
| 3463 ] | 3465 ] |
| 3464 deps += [ "//chrome/test:test_support_ui" ] | 3466 deps += [ "//chrome/test:test_support_ui" ] |
| 3465 } | 3467 } |
| 3466 | 3468 |
| 3467 if (enable_extensions) { | 3469 if (enable_extensions) { |
| 3468 deps += [ "//extensions/browser" ] | 3470 deps += [ "//extensions/browser" ] |
| 3469 } | 3471 } |
| 3470 } | 3472 } |
| OLD | NEW |