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

Side by Side Diff: content/browser/BUILD.gn

Issue 400243003: GN chrome/common build, rename enable_printing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months 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 | Annotate | Revision Log
« no previous file with comments | « chrome/utility/BUILD.gn ('k') | skia/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//content/browser/browser.gni") 7 import("//content/browser/browser.gni")
8 8
9 config("storage_config") { 9 config("storage_config") {
10 if (is_android) { 10 if (is_android) {
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 deps += [ "//third_party/power_gadget" ] 127 deps += [ "//third_party/power_gadget" ]
128 } else { 128 } else {
129 sources += [ "power_profiler/power_data_provider_dummy.cc" ] 129 sources += [ "power_profiler/power_data_provider_dummy.cc" ]
130 sources -= [ "renderer_host/web_input_event_aurawin.cc" ] 130 sources -= [ "renderer_host/web_input_event_aurawin.cc" ]
131 } 131 }
132 132
133 if (!is_win && !is_mac && (!is_linux || !use_udev)) { 133 if (!is_win && !is_mac && (!is_linux || !use_udev)) {
134 sources += [ "gamepad/gamepad_platform_data_fetcher.cc" ] 134 sources += [ "gamepad/gamepad_platform_data_fetcher.cc" ]
135 } 135 }
136 136
137 if (enable_printing != 0) { 137 if (printing_mode != 0) {
138 deps += [ "//printing" ] 138 deps += [ "//printing" ]
139 } 139 }
140 140
141 # TODO(GYP) 141 # TODO(GYP)
142 # ['OS!="ios" and chrome_multiple_dll!=1', { 142 # ['OS!="ios" and chrome_multiple_dll!=1', {
143 # 'dependencies': [ 143 # 'dependencies': [
144 # '../third_party/WebKit/public/blink.gyp:blink', 144 # '../third_party/WebKit/public/blink.gyp:blink',
145 # ], 145 # ],
146 # }], 146 # }],
147 if (!is_mac && !is_ios) { 147 if (!is_mac && !is_ios) {
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 sources -= [ 390 sources -= [
391 "geolocation/empty_wifi_data_provider.cc", 391 "geolocation/empty_wifi_data_provider.cc",
392 ] 392 ]
393 deps += [ "//dbus" ] 393 deps += [ "//dbus" ]
394 } else { 394 } else {
395 # This will already have gotten removed for all non-Linux cases. 395 # This will already have gotten removed for all non-Linux cases.
396 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] 396 sources -= [ "geolocation/wifi_data_provider_linux.cc" ]
397 } 397 }
398 } 398 }
399 } 399 }
OLDNEW
« no previous file with comments | « chrome/utility/BUILD.gn ('k') | skia/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698