| 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/debugger/devtools_resources.gyp:devtools_resources', | 7 'browser/debugger/devtools_resources.gyp:devtools_resources', |
| 8 '../base/base.gyp:base_static', | 8 '../base/base.gyp:base_static', |
| 9 '../crypto/crypto.gyp:crypto', | 9 '../crypto/crypto.gyp:crypto', |
| 10 '../net/net.gyp:http_server', | 10 '../net/net.gyp:http_server', |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 'browser/accessibility/browser_accessibility_state_impl.cc', | 173 'browser/accessibility/browser_accessibility_state_impl.cc', |
| 174 'browser/accessibility/browser_accessibility_state_impl.h', | 174 'browser/accessibility/browser_accessibility_state_impl.h', |
| 175 'browser/accessibility/browser_accessibility_win.cc', | 175 'browser/accessibility/browser_accessibility_win.cc', |
| 176 'browser/accessibility/browser_accessibility_win.h', | 176 'browser/accessibility/browser_accessibility_win.h', |
| 177 'browser/appcache/appcache_dispatcher_host.cc', | 177 'browser/appcache/appcache_dispatcher_host.cc', |
| 178 'browser/appcache/appcache_dispatcher_host.h', | 178 'browser/appcache/appcache_dispatcher_host.h', |
| 179 'browser/appcache/appcache_frontend_proxy.cc', | 179 'browser/appcache/appcache_frontend_proxy.cc', |
| 180 'browser/appcache/appcache_frontend_proxy.h', | 180 'browser/appcache/appcache_frontend_proxy.h', |
| 181 'browser/appcache/chrome_appcache_service.cc', | 181 'browser/appcache/chrome_appcache_service.cc', |
| 182 'browser/appcache/chrome_appcache_service.h', | 182 'browser/appcache/chrome_appcache_service.h', |
| 183 'browser/battery_status/battery_status_message_filter.cc', |
| 184 'browser/battery_status/battery_status_message_filter.h', |
| 183 'browser/browser_child_process_host_impl.cc', | 185 'browser/browser_child_process_host_impl.cc', |
| 184 'browser/browser_child_process_host_impl.h', | 186 'browser/browser_child_process_host_impl.h', |
| 185 'browser/browser_context.cc', | 187 'browser/browser_context.cc', |
| 186 'browser/browser_main.cc', | 188 'browser/browser_main.cc', |
| 187 'browser/browser_main.h', | 189 'browser/browser_main.h', |
| 188 'browser/browser_main_loop.cc', | 190 'browser/browser_main_loop.cc', |
| 189 'browser/browser_main_loop.h', | 191 'browser/browser_main_loop.h', |
| 190 'browser/browser_main_runner.cc', | 192 'browser/browser_main_runner.cc', |
| 191 'browser/browser_plugin/browser_plugin_web_contents_observer.cc', | 193 'browser/browser_plugin/browser_plugin_web_contents_observer.cc', |
| 192 'browser/browser_plugin/browser_plugin_web_contents_observer.h', | 194 'browser/browser_plugin/browser_plugin_web_contents_observer.h', |
| (...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 839 ], | 841 ], |
| 840 }], | 842 }], |
| 841 ['chromeos==1', { | 843 ['chromeos==1', { |
| 842 'dependencies': [ | 844 'dependencies': [ |
| 843 '../build/linux/system.gyp:dbus-glib', | 845 '../build/linux/system.gyp:dbus-glib', |
| 844 ], | 846 ], |
| 845 'sources!': [ | 847 'sources!': [ |
| 846 'browser/renderer_host/gtk_key_bindings_handler.cc', | 848 'browser/renderer_host/gtk_key_bindings_handler.cc', |
| 847 'browser/renderer_host/gtk_key_bindings_handler.h', | 849 'browser/renderer_host/gtk_key_bindings_handler.h', |
| 848 ], | 850 ], |
| 851 }, { # chromeos == 0 |
| 852 'sources/': [ |
| 853 ['exclude', '^browser/battery_status/'], |
| 854 ] |
| 849 }], | 855 }], |
| 850 ['os_bsd==1', { | 856 ['os_bsd==1', { |
| 851 'sources/': [ | 857 'sources/': [ |
| 852 ['exclude', '^browser/gamepad/platform_data_fetcher_linux\\.cc$'], | 858 ['exclude', '^browser/gamepad/platform_data_fetcher_linux\\.cc$'], |
| 853 ['exclude', '^browser/geolocation/wifi_data_provider_linux\\.cc$'], | 859 ['exclude', '^browser/geolocation/wifi_data_provider_linux\\.cc$'], |
| 854 ], | 860 ], |
| 855 }], | 861 }], |
| 856 ['use_aura==1', { | 862 ['use_aura==1', { |
| 857 'dependencies': [ | 863 'dependencies': [ |
| 858 '../ui/aura/aura.gyp:aura', | 864 '../ui/aura/aura.gyp:aura', |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 918 ], | 924 ], |
| 919 }], | 925 }], |
| 920 ['input_speech==0', { | 926 ['input_speech==0', { |
| 921 'sources/': [ | 927 'sources/': [ |
| 922 ['exclude', '^browser/speech/'], | 928 ['exclude', '^browser/speech/'], |
| 923 ], | 929 ], |
| 924 }], | 930 }], |
| 925 ], | 931 ], |
| 926 } | 932 } |
| 927 | 933 |
| OLD | NEW |