OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 | 7 |
8 'variables': { | 8 'variables': { |
9 'version_py_path': 'tools/build/version.py', | 9 'version_py_path': 'tools/build/version.py', |
10 'version_path': 'VERSION', | 10 'version_path': 'VERSION', |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 '../third_party/icu/icu.gyp:icui18n', | 176 '../third_party/icu/icu.gyp:icui18n', |
177 '../third_party/icu/icu.gyp:icuuc', | 177 '../third_party/icu/icu.gyp:icuuc', |
178 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 178 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
179 ], | 179 ], |
180 'include_dirs': [ | 180 'include_dirs': [ |
181 '..', | 181 '..', |
182 ], | 182 ], |
183 'sources': [ | 183 'sources': [ |
184 'browser/debugger/browser_list_tabcontents_provider.cc', | 184 'browser/debugger/browser_list_tabcontents_provider.cc', |
185 'browser/debugger/browser_list_tabcontents_provider.h', | 185 'browser/debugger/browser_list_tabcontents_provider.h', |
186 'browser/debugger/debugger_remote_service.cc', | |
187 'browser/debugger/debugger_remote_service.h', | |
188 'browser/debugger/devtools_file_util.cc', | 186 'browser/debugger/devtools_file_util.cc', |
189 'browser/debugger/devtools_file_util.h', | 187 'browser/debugger/devtools_file_util.h', |
190 'browser/debugger/devtools_protocol_handler.cc', | |
191 'browser/debugger/devtools_protocol_handler.h', | |
192 'browser/debugger/devtools_remote.h', | |
193 'browser/debugger/devtools_remote_listen_socket.cc', | |
194 'browser/debugger/devtools_remote_listen_socket.h', | |
195 'browser/debugger/devtools_remote_message.cc', | |
196 'browser/debugger/devtools_remote_message.h', | |
197 'browser/debugger/devtools_remote_service.cc', | |
198 'browser/debugger/devtools_remote_service.h', | |
199 'browser/debugger/devtools_toggle_action.h', | 188 'browser/debugger/devtools_toggle_action.h', |
200 'browser/debugger/devtools_window.cc', | 189 'browser/debugger/devtools_window.cc', |
201 'browser/debugger/devtools_window.h', | 190 'browser/debugger/devtools_window.h', |
202 'browser/debugger/extension_ports_remote_service.cc', | |
203 'browser/debugger/extension_ports_remote_service.h', | |
204 'browser/debugger/inspectable_tab_proxy.cc', | |
205 'browser/debugger/inspectable_tab_proxy.h', | |
206 'browser/debugger/remote_debugging_server.cc', | 191 'browser/debugger/remote_debugging_server.cc', |
207 'browser/debugger/remote_debugging_server.h', | 192 'browser/debugger/remote_debugging_server.h', |
208 ], | 193 ], |
209 'conditions': [ | 194 'conditions': [ |
210 ['toolkit_uses_gtk == 1', { | 195 ['toolkit_uses_gtk == 1', { |
211 'dependencies': [ | 196 'dependencies': [ |
212 '../build/linux/system.gyp:gtk', | 197 '../build/linux/system.gyp:gtk', |
213 ], | 198 ], |
214 }], | 199 }], |
215 ], | 200 ], |
(...skipping 1101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1317 'configurations': { | 1302 'configurations': { |
1318 'Common_Base': { | 1303 'Common_Base': { |
1319 'msvs_target_platform': 'x64', | 1304 'msvs_target_platform': 'x64', |
1320 }, | 1305 }, |
1321 }, | 1306 }, |
1322 }, | 1307 }, |
1323 ]}, # 'targets' | 1308 ]}, # 'targets' |
1324 ], # OS=="win" | 1309 ], # OS=="win" |
1325 ], # 'conditions' | 1310 ], # 'conditions' |
1326 } | 1311 } |
OLD | NEW |