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

Side by Side Diff: chrome/chrome.gyp

Issue 489633002: Move 'debugger' from child to browser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
11 # Linux or Mac, and into chrome.dll on Windows. 11 # Linux or Mac, and into chrome.dll on Windows.
12 # NOTE: Most new includes should go in the OS!="ios" condition below. 12 # NOTE: Most new includes should go in the OS!="ios" condition below.
13 'chromium_browser_dependencies': [ 13 'chromium_browser_dependencies': [
14 'common', 14 'common',
15 'browser', 15 'browser',
16 '../sync/sync.gyp:sync', 16 '../sync/sync.gyp:sync',
17 ], 17 ],
18 'chromium_child_dependencies': [ 18 'chromium_child_dependencies': [
19 'common', 19 'common',
20 '../sync/sync.gyp:sync', 20 '../sync/sync.gyp:sync',
21 ], 21 ],
22 'allocator_target': '../base/allocator/allocator.gyp:allocator', 22 'allocator_target': '../base/allocator/allocator.gyp:allocator',
23 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', 23 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome',
24 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', 24 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out',
25 'conditions': [ 25 'conditions': [
26 ['OS!="ios"', { 26 ['OS!="ios"', {
27 'chromium_browser_dependencies': [ 27 'chromium_browser_dependencies': [
28 'debugger',
28 '../ppapi/ppapi_internal.gyp:ppapi_host', 29 '../ppapi/ppapi_internal.gyp:ppapi_host',
29 ], 30 ],
30 'chromium_child_dependencies': [ 31 'chromium_child_dependencies': [
31 'debugger',
32 'plugin', 32 'plugin',
33 'renderer', 33 'renderer',
34 'utility', 34 'utility',
35 '../content/content.gyp:content_gpu', 35 '../content/content.gyp:content_gpu',
36 '../content/content.gyp:content_ppapi_plugin', 36 '../content/content.gyp:content_ppapi_plugin',
37 '../third_party/WebKit/public/blink_devtools.gyp:blink_devtools_fronte nd_resources', 37 '../third_party/WebKit/public/blink_devtools.gyp:blink_devtools_fronte nd_resources',
38 ], 38 ],
39 }], 39 }],
40 ['enable_printing!=0', { 40 ['enable_printing!=0', {
41 'chromium_browser_dependencies': [ 41 'chromium_browser_dependencies': [
(...skipping 725 matching lines...) Expand 10 before | Expand all | Expand 10 after
767 'sources': [ 767 'sources': [
768 'service/cloud_print/print_system_dummy.cc', 768 'service/cloud_print/print_system_dummy.cc',
769 ], 769 ],
770 }], 770 }],
771 ], 771 ],
772 }, 772 },
773 ], 773 ],
774 }], 774 }],
775 ], # 'conditions' 775 ], # 'conditions'
776 } 776 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698