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

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

Issue 2458833005: Move printing defines to buildflag system. (Closed)
Patch Set: Missing file 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("//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 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 "//components/web_resource", 560 "//components/web_resource",
560 "//components/zoom", 561 "//components/zoom",
561 "//content/app/resources", 562 "//content/app/resources",
562 "//content/public/common", 563 "//content/public/common",
563 "//crypto", 564 "//crypto",
564 "//device/base", 565 "//device/base",
565 "//device/bluetooth/public/interfaces:experimental_interfaces", 566 "//device/bluetooth/public/interfaces:experimental_interfaces",
566 "//device/usb", 567 "//device/usb",
567 "//media", 568 "//media",
568 "//net:net_with_v8", 569 "//net:net_with_v8",
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:resources", 575 "//third_party/WebKit/public:resources",
574 "//third_party/adobe/flash:flapper_version_h", 576 "//third_party/adobe/flash:flapper_version_h",
575 "//third_party/brotli", 577 "//third_party/brotli",
576 "//third_party/cacheinvalidation", 578 "//third_party/cacheinvalidation",
577 "//third_party/cld:cld_version", 579 "//third_party/cld:cld_version",
578 "//third_party/icu", 580 "//third_party/icu",
(...skipping 2848 matching lines...) Expand 10 before | Expand all | Expand 10 after
3427 "test/test_confirm_bubble_model.cc", 3429 "test/test_confirm_bubble_model.cc",
3428 "test/test_confirm_bubble_model.h", 3430 "test/test_confirm_bubble_model.h",
3429 ] 3431 ]
3430 deps += [ "//chrome/test:test_support_ui" ] 3432 deps += [ "//chrome/test:test_support_ui" ]
3431 } 3433 }
3432 3434
3433 if (enable_extensions) { 3435 if (enable_extensions) {
3434 deps += [ "//extensions/browser" ] 3436 deps += [ "//extensions/browser" ]
3435 } 3437 }
3436 } 3438 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698