Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(304)

Side by Side Diff: chrome/chrome.gyp

Issue 11570081: Support file system access in DevTools with isolated file system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 203 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
204 ], 204 ],
205 'include_dirs': [ 205 'include_dirs': [
206 '..', 206 '..',
207 ], 207 ],
208 'sources': [ 208 'sources': [
209 'browser/devtools/browser_list_tabcontents_provider.cc', 209 'browser/devtools/browser_list_tabcontents_provider.cc',
210 'browser/devtools/browser_list_tabcontents_provider.h', 210 'browser/devtools/browser_list_tabcontents_provider.h',
211 'browser/devtools/devtools_file_helper.cc', 211 'browser/devtools/devtools_file_helper.cc',
212 'browser/devtools/devtools_file_helper.h', 212 'browser/devtools/devtools_file_helper.h',
213 'browser/devtools/devtools_file_system_helper.cc',
214 'browser/devtools/devtools_file_system_helper.h',
213 'browser/devtools/devtools_toggle_action.h', 215 'browser/devtools/devtools_toggle_action.h',
214 'browser/devtools/devtools_window.cc', 216 'browser/devtools/devtools_window.cc',
215 'browser/devtools/devtools_window.h', 217 'browser/devtools/devtools_window.h',
216 'browser/devtools/remote_debugging_server.cc', 218 'browser/devtools/remote_debugging_server.cc',
217 'browser/devtools/remote_debugging_server.h', 219 'browser/devtools/remote_debugging_server.h',
218 ], 220 ],
219 'conditions': [ 221 'conditions': [
220 ['toolkit_uses_gtk == 1', { 222 ['toolkit_uses_gtk == 1', {
221 'dependencies': [ 223 'dependencies': [
222 '../build/linux/system.gyp:gtk', 224 '../build/linux/system.gyp:gtk',
(...skipping 863 matching lines...) Expand 10 before | Expand all | Expand 10 after
1086 '../build/java.gypi', 1088 '../build/java.gypi',
1087 ], 1089 ],
1088 }, 1090 },
1089 ], # 'targets' 1091 ], # 'targets'
1090 'includes': [ 1092 'includes': [
1091 'chrome_android.gypi', 1093 'chrome_android.gypi',
1092 ]}, # 'includes' 1094 ]}, # 'includes'
1093 ], # OS=="android" 1095 ], # OS=="android"
1094 ], # 'conditions' 1096 ], # 'conditions'
1095 } 1097 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698