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/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 Loading... |
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 (printing_mode != 0) { | 137 if (enable_printing != 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 Loading... |
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 } |
OLD | NEW |