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

Side by Side Diff: chrome/chrome.gyp

Issue 151166: Add missing dependency: debugger depends on chrome_strings (Closed)
Patch Set: Created 11 years, 5 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
« 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
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 2067 matching lines...) Expand 10 before | Expand all | Expand 10 after
2078 ], 2078 ],
2079 }], 2079 }],
2080 ], 2080 ],
2081 }, 2081 },
2082 { 2082 {
2083 'target_name': 'debugger', 2083 'target_name': 'debugger',
2084 'type': '<(library)', 2084 'type': '<(library)',
2085 'msvs_guid': '57823D8C-A317-4713-9125-2C91FDFD12D6', 2085 'msvs_guid': '57823D8C-A317-4713-9125-2C91FDFD12D6',
2086 'dependencies': [ 2086 'dependencies': [
2087 'chrome_resources', 2087 'chrome_resources',
2088 'chrome_strings',
2088 'theme_resources', 2089 'theme_resources',
2089 '../skia/skia.gyp:skia', 2090 '../skia/skia.gyp:skia',
2090 '../third_party/icu38/icu38.gyp:icui18n', 2091 '../third_party/icu38/icu38.gyp:icui18n',
2091 '../third_party/icu38/icu38.gyp:icuuc', 2092 '../third_party/icu38/icu38.gyp:icuuc',
2092 ], 2093 ],
2093 'include_dirs': [ 2094 'include_dirs': [
2094 '..', 2095 '..',
2095 ], 2096 ],
2096 'sources': [ 2097 'sources': [
2097 'browser/debugger/debugger_remote_service.cc', 2098 'browser/debugger/debugger_remote_service.cc',
(...skipping 2752 matching lines...) Expand 10 before | Expand all | Expand 10 after
4850 # Use outputs of this action as inputs for the main target build. 4851 # Use outputs of this action as inputs for the main target build.
4851 # Seems as a misnomer but makes this happy on Linux (scons). 4852 # Seems as a misnomer but makes this happy on Linux (scons).
4852 'process_outputs_as_sources': 1, 4853 'process_outputs_as_sources': 1,
4853 }, 4854 },
4854 ], # 'actions' 4855 ], # 'actions'
4855 }, 4856 },
4856 ] 4857 ]
4857 }], 4858 }],
4858 ], # 'conditions' 4859 ], # 'conditions'
4859 } 4860 }
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