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

Side by Side Diff: content/content.gyp

Issue 8533023: Add a content_resources target which currently includes the sandbox definitions on mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 9 years, 1 month 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 | « chrome/chrome_resources.gyp ('k') | content/content_resources.grd » ('j') | 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) 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, # Use higher warning level. 7 'chromium_code': 1, # Use higher warning level.
8 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)', 8 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)',
9 }, 9 },
10 'includes': [ 10 'includes': [
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 'dependencies': [ 58 'dependencies': [
59 'content_common', 59 'content_common',
60 ], 60 ],
61 }, 61 },
62 {'target_name': 'content_common', 62 {'target_name': 'content_common',
63 'type': 'static_library', 63 'type': 'static_library',
64 'variables': { 'enable_wexit_time_destructors': 1, }, 64 'variables': { 'enable_wexit_time_destructors': 1, },
65 'includes': [ 65 'includes': [
66 'content_common.gypi', 66 'content_common.gypi',
67 ], 67 ],
68 'dependencies': [
69 'content_resources.gyp:content_resources',
70 ],
68 }, 71 },
69 {'target_name': 'content_gpu', 72 {'target_name': 'content_gpu',
70 'type': 'static_library', 73 'type': 'static_library',
71 'variables': { 'enable_wexit_time_destructors': 1, }, 74 'variables': { 'enable_wexit_time_destructors': 1, },
72 'includes': [ 75 'includes': [
73 'content_gpu.gypi', 76 'content_gpu.gypi',
74 ], 77 ],
75 'dependencies': [ 78 'dependencies': [
76 'content_common', 79 'content_common',
77 ], 80 ],
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 {'target_name': 'content_app', 213 {'target_name': 'content_app',
211 'type': 'none', 214 'type': 'none',
212 'dependencies': ['content', 'content_browser'], 215 'dependencies': ['content', 'content_browser'],
213 }, 216 },
214 {'target_name': 'content_browser', 217 {'target_name': 'content_browser',
215 'type': 'none', 218 'type': 'none',
216 'dependencies': ['content'], 219 'dependencies': ['content'],
217 }, 220 },
218 {'target_name': 'content_common', 221 {'target_name': 'content_common',
219 'type': 'none', 222 'type': 'none',
220 'dependencies': ['content'], 223 'dependencies': ['content', 'content_resources.gyp:content_resources'],
221 }, 224 },
222 {'target_name': 'content_gpu', 225 {'target_name': 'content_gpu',
223 'type': 'none', 226 'type': 'none',
224 'dependencies': ['content'], 227 'dependencies': ['content'],
225 }, 228 },
226 {'target_name': 'content_plugin', 229 {'target_name': 'content_plugin',
227 'type': 'none', 230 'type': 'none',
228 'dependencies': ['content'], 231 'dependencies': ['content'],
229 }, 232 },
230 {'target_name': 'content_ppapi_plugin', 233 {'target_name': 'content_ppapi_plugin',
(...skipping 10 matching lines...) Expand all
241 }, 244 },
242 {'target_name': 'content_worker', 245 {'target_name': 'content_worker',
243 'type': 'none', 246 'type': 'none',
244 'dependencies': ['content'], 247 'dependencies': ['content'],
245 }, 248 },
246 ], 249 ],
247 }, 250 },
248 ], 251 ],
249 ], 252 ],
250 } 253 }
OLDNEW
« no previous file with comments | « chrome/chrome_resources.gyp ('k') | content/content_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698