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 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
10 | 10 |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 "//content/browser/devtools:gen_devtools_protocol_handler", | 50 "//content/browser/devtools:gen_devtools_protocol_handler", |
51 "//content/browser/devtools:resources", | 51 "//content/browser/devtools:resources", |
52 "//content/browser/notifications:notification_proto", | 52 "//content/browser/notifications:notification_proto", |
53 "//content/browser/service_worker:service_worker_proto", | 53 "//content/browser/service_worker:service_worker_proto", |
54 "//content/browser/speech/proto", | 54 "//content/browser/speech/proto", |
55 "//content/common", | 55 "//content/common", |
56 "//content/public/common:common_sources", | 56 "//content/public/common:common_sources", |
57 "//crypto", | 57 "//crypto", |
58 "//device/battery", | 58 "//device/battery", |
59 "//device/bluetooth", | 59 "//device/bluetooth", |
60 "//device/power_save_blocker", | |
61 "//device/vibration", | 60 "//device/vibration", |
62 "//gin", | 61 "//gin", |
63 "//google_apis", | 62 "//google_apis", |
64 "//gpu", | 63 "//gpu", |
65 "//gpu/command_buffer/client:gles2_implementation", | 64 "//gpu/command_buffer/client:gles2_implementation", |
66 "//gpu/command_buffer/client:gles2_interface", | 65 "//gpu/command_buffer/client:gles2_interface", |
67 "//ipc/mojo", | 66 "//ipc/mojo", |
68 "//ipc/mojo:ipc_support", | 67 "//ipc/mojo:ipc_support", |
69 "//media", | 68 "//media", |
70 "//media/gpu/ipc/client", | 69 "//media/gpu/ipc/client", |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 "//build/config/linux:glib", | 284 "//build/config/linux:glib", |
286 ] | 285 ] |
287 } | 286 } |
288 | 287 |
289 if (is_linux && use_aura) { | 288 if (is_linux && use_aura) { |
290 deps += [ "//build/linux:fontconfig" ] | 289 deps += [ "//build/linux:fontconfig" ] |
291 } | 290 } |
292 | 291 |
293 if (use_x11) { | 292 if (use_x11) { |
294 configs += [ "//build/config/linux:x11" ] | 293 configs += [ "//build/config/linux:x11" ] |
| 294 if (!is_chromeos) { |
| 295 configs += [ "//build/config/linux:xscrnsaver" ] |
| 296 } |
295 deps += [ "//ui/gfx/x" ] | 297 deps += [ "//ui/gfx/x" ] |
296 } | 298 } |
297 | 299 |
| 300 # Dealing with power_save_blocker_{x11,ozone}.cc is a little complicated |
| 301 # given the interaction between os_chromeos and the feature flags for X11 and |
| 302 # ozone, so do it all in one spot. |
| 303 if (is_chromeos || !use_ozone) { |
| 304 sources -= [ "power_save_blocker_ozone.cc" ] |
| 305 } |
| 306 if (is_chromeos || !use_x11) { |
| 307 sources -= [ "power_save_blocker_x11.cc" ] |
| 308 } |
| 309 |
298 # Dealing with *wifi_data_provider_*.cc is also a bit complicated given | 310 # Dealing with *wifi_data_provider_*.cc is also a bit complicated given |
299 # android, chromeos, linux and use_dbus. | 311 # android, chromeos, linux and use_dbus. |
300 if (is_android) { | 312 if (is_android) { |
301 sources -= [ "geolocation/wifi_data_provider_common.cc" ] | 313 sources -= [ "geolocation/wifi_data_provider_common.cc" ] |
302 } | 314 } |
303 if (is_chromeos || (is_linux && !use_dbus)) { | 315 if (is_chromeos || (is_linux && !use_dbus)) { |
304 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] | 316 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] |
305 } | 317 } |
306 if (is_linux && use_dbus) { | 318 if (is_linux && use_dbus) { |
307 sources -= [ "geolocation/empty_wifi_data_provider.cc" ] | 319 sources -= [ "geolocation/empty_wifi_data_provider.cc" ] |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
517 if (!is_component_build) { | 529 if (!is_component_build) { |
518 public_deps = [ | 530 public_deps = [ |
519 ":browser", | 531 ":browser", |
520 ] | 532 ] |
521 } else { | 533 } else { |
522 public_deps = [ | 534 public_deps = [ |
523 "//third_party/leveldatabase", | 535 "//third_party/leveldatabase", |
524 ] | 536 ] |
525 } | 537 } |
526 } | 538 } |
OLD | NEW |