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

Side by Side Diff: chrome/chrome.gyp

Issue 6990059: DevTools: devtools message plumbing between worker and page processes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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) 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 11 matching lines...) Expand all
22 # Linux or Mac, and into chrome.dll on Windows. 22 # Linux or Mac, and into chrome.dll on Windows.
23 'chromium_dependencies': [ 23 'chromium_dependencies': [
24 'common', 24 'common',
25 'browser', 25 'browser',
26 'debugger', 26 'debugger',
27 'profile_import', 27 'profile_import',
28 'renderer', 28 'renderer',
29 'syncapi', 29 'syncapi',
30 'utility', 30 'utility',
31 'service', 31 'service',
32 'worker',
32 '../content/content.gyp:content_gpu', 33 '../content/content.gyp:content_gpu',
33 '../content/content.gyp:content_ppapi_plugin', 34 '../content/content.gyp:content_ppapi_plugin',
34 '../content/content.gyp:content_worker', 35 '../content/content.gyp:content_worker',
35 '../printing/printing.gyp:printing', 36 '../printing/printing.gyp:printing',
36 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:inspector_resourc es', 37 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:inspector_resourc es',
37 ], 38 ],
38 'nacl_win64_dependencies': [ 39 'nacl_win64_dependencies': [
39 'common_nacl_win64', 40 'common_nacl_win64',
40 'common_constants_win64', 41 'common_constants_win64',
41 'installer_util_nacl_win64', 42 'installer_util_nacl_win64',
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 # by Native Client only. 125 # by Native Client only.
125 'app/policy/policy_templates.gypi', 126 'app/policy/policy_templates.gypi',
126 'chrome_browser.gypi', 127 'chrome_browser.gypi',
127 'chrome_common.gypi', 128 'chrome_common.gypi',
128 'chrome_dll.gypi', 129 'chrome_dll.gypi',
129 'chrome_exe.gypi', 130 'chrome_exe.gypi',
130 'chrome_installer.gypi', 131 'chrome_installer.gypi',
131 'chrome_installer_util.gypi', 132 'chrome_installer_util.gypi',
132 'chrome_renderer.gypi', 133 'chrome_renderer.gypi',
133 'chrome_tests.gypi', 134 'chrome_tests.gypi',
135 'chrome_worker.gypi',
134 'common_constants.gypi', 136 'common_constants.gypi',
135 'nacl.gypi', 137 'nacl.gypi',
136 ], 138 ],
137 'targets': [ 139 'targets': [
138 { 140 {
139 # TODO(mark): It would be better if each static library that needed 141 # TODO(mark): It would be better if each static library that needed
140 # to run grit would list its own .grd files, but unfortunately some 142 # to run grit would list its own .grd files, but unfortunately some
141 # of the static libraries currently have circular dependencies among 143 # of the static libraries currently have circular dependencies among
142 # generated headers. 144 # generated headers.
143 'target_name': 'chrome_resources', 145 'target_name': 'chrome_resources',
(...skipping 1491 matching lines...) Expand 10 before | Expand all | Expand 10 after
1635 }], # targets 1637 }], # targets
1636 }], # os_posix == 1 and OS != "mac" 1638 }], # os_posix == 1 and OS != "mac"
1637 ], # 'conditions' 1639 ], # 'conditions'
1638 } 1640 }
1639 1641
1640 # Local Variables: 1642 # Local Variables:
1641 # tab-width:2 1643 # tab-width:2
1642 # indent-tabs-mode:nil 1644 # indent-tabs-mode:nil
1643 # End: 1645 # End:
1644 # vim: set expandtab tabstop=2 shiftwidth=2: 1646 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698