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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 | 7 |
8 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 '../net/net.gyp:net', | 200 '../net/net.gyp:net', |
201 '../skia/skia.gyp:skia', | 201 '../skia/skia.gyp:skia', |
202 '../third_party/icu/icu.gyp:icui18n', | 202 '../third_party/icu/icu.gyp:icui18n', |
203 '../third_party/icu/icu.gyp:icuuc', | 203 '../third_party/icu/icu.gyp:icuuc', |
204 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 204 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
205 ], | 205 ], |
206 'include_dirs': [ | 206 'include_dirs': [ |
207 '..', | 207 '..', |
208 ], | 208 ], |
209 'sources': [ | 209 'sources': [ |
| 210 'browser/devtools/adb_client_socket.cc', |
| 211 'browser/devtools/adb_client_socket.h', |
210 'browser/devtools/browser_list_tabcontents_provider.cc', | 212 'browser/devtools/browser_list_tabcontents_provider.cc', |
211 'browser/devtools/browser_list_tabcontents_provider.h', | 213 'browser/devtools/browser_list_tabcontents_provider.h', |
| 214 'browser/devtools/devtools_adb_bridge.cc', |
| 215 'browser/devtools/devtools_adb_bridge.h', |
212 'browser/devtools/devtools_file_helper.cc', | 216 'browser/devtools/devtools_file_helper.cc', |
213 'browser/devtools/devtools_file_helper.h', | 217 'browser/devtools/devtools_file_helper.h', |
214 'browser/devtools/devtools_toggle_action.h', | 218 'browser/devtools/devtools_toggle_action.h', |
215 'browser/devtools/devtools_window.cc', | 219 'browser/devtools/devtools_window.cc', |
216 'browser/devtools/devtools_window.h', | 220 'browser/devtools/devtools_window.h', |
| 221 'browser/devtools/protocol_http_request.cc', |
| 222 'browser/devtools/protocol_http_request.h', |
217 'browser/devtools/remote_debugging_server.cc', | 223 'browser/devtools/remote_debugging_server.cc', |
218 'browser/devtools/remote_debugging_server.h', | 224 'browser/devtools/remote_debugging_server.h', |
219 ], | 225 ], |
220 'conditions': [ | 226 'conditions': [ |
221 ['toolkit_uses_gtk == 1', { | 227 ['toolkit_uses_gtk == 1', { |
222 'dependencies': [ | 228 'dependencies': [ |
223 '../build/linux/system.gyp:gtk', | 229 '../build/linux/system.gyp:gtk', |
224 ], | 230 ], |
225 }], | 231 }], |
226 ['OS=="android"', { | 232 ['OS=="android"', { |
(...skipping 874 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1101 '../build/java.gypi', | 1107 '../build/java.gypi', |
1102 ], | 1108 ], |
1103 }, | 1109 }, |
1104 ], # 'targets' | 1110 ], # 'targets' |
1105 'includes': [ | 1111 'includes': [ |
1106 'chrome_android.gypi', | 1112 'chrome_android.gypi', |
1107 ]}, # 'includes' | 1113 ]}, # 'includes' |
1108 ], # OS=="android" | 1114 ], # OS=="android" |
1109 ], # 'conditions' | 1115 ], # 'conditions' |
1110 } | 1116 } |
OLD | NEW |