Chromium Code Reviews| 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 '../base/base.gyp:base_static', | 7 '../base/base.gyp:base_static', |
| 8 '../crypto/crypto.gyp:crypto', | 8 '../crypto/crypto.gyp:crypto', |
| 9 '../google_apis/google_apis.gyp:google_apis', | 9 '../google_apis/google_apis.gyp:google_apis', |
| 10 '../net/net.gyp:net', | 10 '../net/net.gyp:net', |
| (...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 750 'browser/plugin_data_remover_impl.h', | 750 'browser/plugin_data_remover_impl.h', |
| 751 'browser/plugin_loader_posix.cc', | 751 'browser/plugin_loader_posix.cc', |
| 752 'browser/plugin_loader_posix.h', | 752 'browser/plugin_loader_posix.h', |
| 753 'browser/plugin_process_host.cc', | 753 'browser/plugin_process_host.cc', |
| 754 'browser/plugin_process_host.h', | 754 'browser/plugin_process_host.h', |
| 755 'browser/plugin_process_host_mac.cc', | 755 'browser/plugin_process_host_mac.cc', |
| 756 'browser/plugin_service_impl.cc', | 756 'browser/plugin_service_impl.cc', |
| 757 'browser/plugin_service_impl.h', | 757 'browser/plugin_service_impl.h', |
| 758 'browser/power_monitor_message_broadcaster.cc', | 758 'browser/power_monitor_message_broadcaster.cc', |
| 759 'browser/power_monitor_message_broadcaster.h', | 759 'browser/power_monitor_message_broadcaster.h', |
| 760 'browser/power_profiler/devtools_power_profiler_host.cc', | |
| 761 'browser/power_profiler/devtools_power_profiler_host.h', | |
| 762 'browser/power_profiler/power_event.h', | |
| 763 'browser/power_profiler/power_profiler_helper.h', | |
| 764 'browser/power_profiler/power_profiler_helper_dummy.h', | |
| 765 'browser/power_profiler/power_profiler_helper_factory.cc', | |
| 766 'browser/power_profiler/power_profiler_helper_factory.h', | |
| 767 'browser/power_profiler/power_profiler_host.cc', | |
| 768 'browser/power_profiler/power_profiler_host.h', | |
| 769 'browser/power_profiler/power_profiler_service.cc', | |
| 770 'browser/power_profiler/power_profiler_service.h', | |
| 760 'browser/power_save_blocker_android.cc', | 771 'browser/power_save_blocker_android.cc', |
| 761 'browser/power_save_blocker_android.h', | 772 'browser/power_save_blocker_android.h', |
| 762 'browser/power_save_blocker_chromeos.cc', | 773 'browser/power_save_blocker_chromeos.cc', |
| 763 'browser/power_save_blocker_impl.cc', | 774 'browser/power_save_blocker_impl.cc', |
| 764 'browser/power_save_blocker_impl.h', | 775 'browser/power_save_blocker_impl.h', |
| 765 'browser/power_save_blocker_mac.cc', | 776 'browser/power_save_blocker_mac.cc', |
| 766 'browser/power_save_blocker_ozone.cc', | 777 'browser/power_save_blocker_ozone.cc', |
| 767 'browser/power_save_blocker_win.cc', | 778 'browser/power_save_blocker_win.cc', |
| 768 'browser/power_save_blocker_x11.cc', | 779 'browser/power_save_blocker_x11.cc', |
| 769 'browser/ppapi_plugin_process_host.cc', | 780 'browser/ppapi_plugin_process_host.cc', |
| (...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1251 '<(SHARED_INTERMEDIATE_DIR)/webkit/grit/devtools_resources_map.h', | 1262 '<(SHARED_INTERMEDIATE_DIR)/webkit/grit/devtools_resources_map.h', |
| 1252 '<(SHARED_INTERMEDIATE_DIR)/content/browser/tracing/grit/tracing_resources.h ', | 1263 '<(SHARED_INTERMEDIATE_DIR)/content/browser/tracing/grit/tracing_resources.h ', |
| 1253 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/grit/webui_resources_map.cc', | 1264 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/grit/webui_resources_map.cc', |
| 1254 ], | 1265 ], |
| 1255 'conditions': [ | 1266 'conditions': [ |
| 1256 ['toolkit_views==1', { | 1267 ['toolkit_views==1', { |
| 1257 'dependencies': [ | 1268 'dependencies': [ |
| 1258 '../ui/events/events.gyp:events', | 1269 '../ui/events/events.gyp:events', |
| 1259 ], | 1270 ], |
| 1260 }], | 1271 }], |
| 1272 ['target_arch == "ia32" or target_arch == "x64"', { | |
| 1273 'sources': [ | |
| 1274 'browser/power_profiler/Intel/power_profiler_helper_ia.cc', | |
| 1275 'browser/power_profiler/Intel/power_profiler_helper_ia.h', | |
| 1276 'browser/power_profiler/Intel/power_profiler_helper_ia_win.cc', | |
| 1277 'browser/power_profiler/Intel/power_profiler_helper_ia_posix.cc', | |
| 1278 '../third_party/power_gadget/IntelPowerGadgetLib.cpp', | |
|
qsr
2014/01/17 11:50:14
We do not compile source from third-party directly
| |
| 1279 '../third_party/power_gadget/IntelPowerGadgetLib.h', | |
| 1280 ] | |
| 1281 }], | |
| 1261 ['OS!="win" and OS!="mac" and (OS!="linux" or use_udev==0)', { | 1282 ['OS!="win" and OS!="mac" and (OS!="linux" or use_udev==0)', { |
| 1262 'sources': [ | 1283 'sources': [ |
| 1263 'browser/gamepad/gamepad_platform_data_fetcher.cc', | 1284 'browser/gamepad/gamepad_platform_data_fetcher.cc', |
| 1264 ] | 1285 ] |
| 1265 }], | 1286 }], |
| 1266 ['OS=="ios"', { | 1287 ['OS=="ios"', { |
| 1267 'sources/': [ | 1288 'sources/': [ |
| 1268 # iOS only needs a small portion of content; exclude all the | 1289 # iOS only needs a small portion of content; exclude all the |
| 1269 # implementation, and re-include what is used. | 1290 # implementation, and re-include what is used. |
| 1270 ['exclude', '\\.(cc|mm)$'], | 1291 ['exclude', '\\.(cc|mm)$'], |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1623 '../build/linux/system.gyp:dbus', | 1644 '../build/linux/system.gyp:dbus', |
| 1624 '../dbus/dbus.gyp:dbus', | 1645 '../dbus/dbus.gyp:dbus', |
| 1625 ], | 1646 ], |
| 1626 }, { # OS != "linux" or use_dbus==0 | 1647 }, { # OS != "linux" or use_dbus==0 |
| 1627 'sources!': [ | 1648 'sources!': [ |
| 1628 'browser/geolocation/wifi_data_provider_linux.cc', | 1649 'browser/geolocation/wifi_data_provider_linux.cc', |
| 1629 ], | 1650 ], |
| 1630 }], | 1651 }], |
| 1631 ], | 1652 ], |
| 1632 } | 1653 } |
| OLD | NEW |