Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Side by Side Diff: chrome/browser/ui/BUILD.gn

Issue 2512563003: Convert enable_plugins to a buildflag header. (Closed)
Patch Set: Merge Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("//printing/features/features.gni") 14 import("//printing/features/features.gni")
14 15
15 config("ui_warnings") { 16 config("ui_warnings") {
16 if (is_clang) { 17 if (is_clang) {
17 # TODO(thakis): Remove this once http://crbug.com/383820 is figured out 18 # TODO(thakis): Remove this once http://crbug.com/383820 is figured out
18 cflags = [ "-Wno-nonnull" ] 19 cflags = [ "-Wno-nonnull" ]
19 } 20 }
20 } 21 }
21 22
22 # Use a static library here because many test binaries depend on this but don't 23 # 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
563 "//components/zoom", 564 "//components/zoom",
564 "//content/app/resources", 565 "//content/app/resources",
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",
574 "//ppapi/features",
573 "//printing/features", 575 "//printing/features",
574 "//services/service_manager/runner/common", 576 "//services/service_manager/runner/common",
575 "//skia", 577 "//skia",
576 "//storage/browser", 578 "//storage/browser",
577 "//storage/common", 579 "//storage/common",
578 "//third_party/WebKit/public:features", 580 "//third_party/WebKit/public:features",
579 "//third_party/WebKit/public:resources", 581 "//third_party/WebKit/public:resources",
580 "//third_party/adobe/flash:flapper_version_h", 582 "//third_party/adobe/flash:flapper_version_h",
581 "//third_party/brotli", 583 "//third_party/brotli",
582 "//third_party/cacheinvalidation", 584 "//third_party/cacheinvalidation",
(...skipping 2904 matching lines...) Expand 10 before | Expand all | Expand 10 after
3487 "test/test_confirm_bubble_model.cc", 3489 "test/test_confirm_bubble_model.cc",
3488 "test/test_confirm_bubble_model.h", 3490 "test/test_confirm_bubble_model.h",
3489 ] 3491 ]
3490 deps += [ "//chrome/test:test_support_ui" ] 3492 deps += [ "//chrome/test:test_support_ui" ]
3491 } 3493 }
3492 3494
3493 if (enable_extensions) { 3495 if (enable_extensions) {
3494 deps += [ "//extensions/browser" ] 3496 deps += [ "//extensions/browser" ]
3495 } 3497 }
3496 } 3498 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698