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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 }, | 67 }, |
68 { | 68 { |
69 'target_name': 'app_shell_lib', | 69 'target_name': 'app_shell_lib', |
70 'type': 'static_library', | 70 'type': 'static_library', |
71 'defines!': ['CONTENT_IMPLEMENTATION'], | 71 'defines!': ['CONTENT_IMPLEMENTATION'], |
72 'dependencies': [ | 72 'dependencies': [ |
73 'app_shell_pak', | 73 'app_shell_pak', |
74 '<(DEPTH)/apps/shell/common/api/api.gyp:shell_api', | 74 '<(DEPTH)/apps/shell/common/api/api.gyp:shell_api', |
75 '<(DEPTH)/base/base.gyp:base', | 75 '<(DEPTH)/base/base.gyp:base', |
76 '<(DEPTH)/base/base.gyp:base_prefs_test_support', | 76 '<(DEPTH)/base/base.gyp:base_prefs_test_support', |
| 77 '<(DEPTH)/components/components.gyp:omaha_query_params', |
77 '<(DEPTH)/components/components.gyp:pref_registry', | 78 '<(DEPTH)/components/components.gyp:pref_registry', |
78 '<(DEPTH)/components/components.gyp:user_prefs', | 79 '<(DEPTH)/components/components.gyp:user_prefs', |
79 '<(DEPTH)/content/content.gyp:content', | 80 '<(DEPTH)/content/content.gyp:content', |
80 '<(DEPTH)/content/content.gyp:content_gpu', | 81 '<(DEPTH)/content/content.gyp:content_gpu', |
81 '<(DEPTH)/content/content.gyp:content_ppapi_plugin', | 82 '<(DEPTH)/content/content.gyp:content_ppapi_plugin', |
82 '<(DEPTH)/content/content.gyp:content_worker', | 83 '<(DEPTH)/content/content.gyp:content_worker', |
83 '<(DEPTH)/content/content_shell_and_tests.gyp:content_shell_lib', | 84 '<(DEPTH)/content/content_shell_and_tests.gyp:content_shell_lib', |
84 '<(DEPTH)/extensions/common/api/api.gyp:extensions_api', | 85 '<(DEPTH)/extensions/common/api/api.gyp:extensions_api', |
85 '<(DEPTH)/extensions/extensions.gyp:extensions_browser', | 86 '<(DEPTH)/extensions/extensions.gyp:extensions_browser', |
86 '<(DEPTH)/extensions/extensions.gyp:extensions_common', | 87 '<(DEPTH)/extensions/extensions.gyp:extensions_common', |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 'browser/shell_extension_system.cc', | 123 'browser/shell_extension_system.cc', |
123 'browser/shell_extension_system.h', | 124 'browser/shell_extension_system.h', |
124 'browser/shell_extension_system_factory.cc', | 125 'browser/shell_extension_system_factory.cc', |
125 'browser/shell_extension_system_factory.h', | 126 'browser/shell_extension_system_factory.h', |
126 'browser/shell_extension_web_contents_observer.cc', | 127 'browser/shell_extension_web_contents_observer.cc', |
127 'browser/shell_extension_web_contents_observer.h', | 128 'browser/shell_extension_web_contents_observer.h', |
128 'browser/shell_extensions_browser_client.cc', | 129 'browser/shell_extensions_browser_client.cc', |
129 'browser/shell_extensions_browser_client.h', | 130 'browser/shell_extensions_browser_client.h', |
130 'browser/shell_network_controller_chromeos.cc', | 131 'browser/shell_network_controller_chromeos.cc', |
131 'browser/shell_network_controller_chromeos.h', | 132 'browser/shell_network_controller_chromeos.h', |
| 133 'browser/shell_omaha_query_params_delegate.cc', |
| 134 'browser/shell_omaha_query_params_delegate.h', |
132 'browser/shell_runtime_api_delegate.cc', | 135 'browser/shell_runtime_api_delegate.cc', |
133 'browser/shell_runtime_api_delegate.h', | 136 'browser/shell_runtime_api_delegate.h', |
134 'common/shell_content_client.cc', | 137 'common/shell_content_client.cc', |
135 'common/shell_content_client.h', | 138 'common/shell_content_client.h', |
136 'common/shell_extensions_client.cc', | 139 'common/shell_extensions_client.cc', |
137 'common/shell_extensions_client.h', | 140 'common/shell_extensions_client.h', |
138 'renderer/shell_content_renderer_client.cc', | 141 'renderer/shell_content_renderer_client.cc', |
139 'renderer/shell_content_renderer_client.h', | 142 'renderer/shell_content_renderer_client.h', |
140 'renderer/shell_custom_bindings.cc', | 143 'renderer/shell_custom_bindings.cc', |
141 'renderer/shell_custom_bindings.h', | 144 'renderer/shell_custom_bindings.h', |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 'browser/shell_browsertest.cc', | 206 'browser/shell_browsertest.cc', |
204 'test/shell_test.h', | 207 'test/shell_test.h', |
205 'test/shell_test.cc', | 208 'test/shell_test.cc', |
206 'test/shell_test_launcher_delegate.cc', | 209 'test/shell_test_launcher_delegate.cc', |
207 'test/shell_test_launcher_delegate.h', | 210 'test/shell_test_launcher_delegate.h', |
208 'test/shell_tests_main.cc', | 211 'test/shell_tests_main.cc', |
209 ], | 212 ], |
210 }, | 213 }, |
211 ], # targets | 214 ], # targets |
212 } | 215 } |
OLD | NEW |