OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
6 'dependencies': [ | 6 'dependencies': [ |
7 'browser/speech/proto/speech_proto.gyp:speech_proto', | 7 'browser/speech/proto/speech_proto.gyp:speech_proto', |
8 '../base/base.gyp:base_static', | 8 '../base/base.gyp:base_static', |
9 '../crypto/crypto.gyp:crypto', | 9 '../crypto/crypto.gyp:crypto', |
10 '../google_apis/google_apis.gyp:google_apis', | 10 '../google_apis/google_apis.gyp:google_apis', |
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
581 'browser/plugin_data_remover_impl.h', | 581 'browser/plugin_data_remover_impl.h', |
582 'browser/plugin_loader_posix.cc', | 582 'browser/plugin_loader_posix.cc', |
583 'browser/plugin_loader_posix.h', | 583 'browser/plugin_loader_posix.h', |
584 'browser/plugin_process_host.cc', | 584 'browser/plugin_process_host.cc', |
585 'browser/plugin_process_host.h', | 585 'browser/plugin_process_host.h', |
586 'browser/plugin_process_host_mac.cc', | 586 'browser/plugin_process_host_mac.cc', |
587 'browser/plugin_service_impl.cc', | 587 'browser/plugin_service_impl.cc', |
588 'browser/plugin_service_impl.h', | 588 'browser/plugin_service_impl.h', |
589 'browser/power_save_blocker_android.cc', | 589 'browser/power_save_blocker_android.cc', |
590 'browser/power_save_blocker_chromeos.cc', | 590 'browser/power_save_blocker_chromeos.cc', |
| 591 'browser/power_save_blocker_empty.cc', |
591 'browser/power_save_blocker_impl.cc', | 592 'browser/power_save_blocker_impl.cc', |
592 'browser/power_save_blocker_impl.h', | 593 'browser/power_save_blocker_impl.h', |
593 'browser/power_save_blocker_linux.cc', | 594 'browser/power_save_blocker_linux.cc', |
594 'browser/power_save_blocker_mac.cc', | 595 'browser/power_save_blocker_mac.cc', |
595 'browser/power_save_blocker_win.cc', | 596 'browser/power_save_blocker_win.cc', |
596 'browser/ppapi_plugin_process_host.cc', | 597 'browser/ppapi_plugin_process_host.cc', |
597 'browser/ppapi_plugin_process_host.h', | 598 'browser/ppapi_plugin_process_host.h', |
598 'browser/profiler_controller_impl.cc', | 599 'browser/profiler_controller_impl.cc', |
599 'browser/profiler_controller_impl.h', | 600 'browser/profiler_controller_impl.h', |
600 'browser/profiler_message_filter.cc', | 601 'browser/profiler_message_filter.cc', |
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1073 ], | 1074 ], |
1074 # Set LINUX_SANDBOX_PATH for Linux, including Chrome OS | 1075 # Set LINUX_SANDBOX_PATH for Linux, including Chrome OS |
1075 'conditions': [ | 1076 'conditions': [ |
1076 ['linux_sandbox_path != ""', { | 1077 ['linux_sandbox_path != ""', { |
1077 'defines': [ | 1078 'defines': [ |
1078 'LINUX_SANDBOX_PATH="<(linux_sandbox_path)"', | 1079 'LINUX_SANDBOX_PATH="<(linux_sandbox_path)"', |
1079 ], | 1080 ], |
1080 }], | 1081 }], |
1081 ], | 1082 ], |
1082 }], | 1083 }], |
| 1084 ['OS=="linux" and use_dbus==0', { |
| 1085 'sources!': [ |
| 1086 'browser/power_save_blocker_linux.cc', |
| 1087 'browser/geolocation/wifi_data_provider_linux.cc', |
| 1088 ], |
| 1089 'dependencies!': [ |
| 1090 '../build/linux/system.gyp:dbus', |
| 1091 '../dbus/dbus.gyp:dbus', |
| 1092 ], |
| 1093 }], |
| 1094 ['OS=="win" or OS=="mac" or (OS=="linux" and use_dbus==1)', { |
| 1095 'sources!': [ |
| 1096 'browser/geolocation/empty_device_data_provider.cc', |
| 1097 'browser/geolocation/empty_device_data_provider.h', |
| 1098 'browser/power_save_blocker_empty.cc', |
| 1099 ], |
| 1100 }], |
1083 ['OS=="linux" and use_aura==1', { | 1101 ['OS=="linux" and use_aura==1', { |
1084 'dependencies': [ | 1102 'dependencies': [ |
1085 '../build/linux/system.gyp:dbus', | 1103 '../build/linux/system.gyp:dbus', |
1086 '../build/linux/system.gyp:fontconfig', | 1104 '../build/linux/system.gyp:fontconfig', |
1087 '../build/linux/system.gyp:x11', | 1105 '../build/linux/system.gyp:x11', |
1088 '../dbus/dbus.gyp:dbus', | 1106 '../dbus/dbus.gyp:dbus', |
1089 ], | 1107 ], |
1090 }], | 1108 }], |
1091 ['OS=="android"', { | 1109 ['OS=="android"', { |
1092 'dependencies': [ | 1110 'dependencies': [ |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1225 ['exclude', '^browser/speech/'], | 1243 ['exclude', '^browser/speech/'], |
1226 ], | 1244 ], |
1227 }], | 1245 }], |
1228 ['linux_use_libgps==1', { | 1246 ['linux_use_libgps==1', { |
1229 'dependencies': [ | 1247 'dependencies': [ |
1230 '../build/linux/system.gyp:libgps', | 1248 '../build/linux/system.gyp:libgps', |
1231 ], | 1249 ], |
1232 }], | 1250 }], |
1233 ], | 1251 ], |
1234 } | 1252 } |
OLD | NEW |