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

Side by Side Diff: chrome/chrome.gyp

Issue 219007: Rolling back 26904, didn't take chrome branding into account.... (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: Created 11 years, 3 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 | « chrome/app/locales/locales.gyp ('k') | webkit/tools/test_shell/test_shell.gyp » ('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) 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 8
9 # Define the common dependencies that contain all the actual 9 # Define the common dependencies that contain all the actual
10 # Chromium functionality. This list gets pulled in below by 10 # Chromium functionality. This list gets pulled in below by
(...skipping 19 matching lines...) Expand all
30 'app/chromium_strings.grd', 30 'app/chromium_strings.grd',
31 'app/generated_resources.grd', 31 'app/generated_resources.grd',
32 'app/google_chrome_strings.grd', 32 'app/google_chrome_strings.grd',
33 ], 33 ],
34 'chrome_resources_grds': [ 34 'chrome_resources_grds': [
35 # Data resources. 35 # Data resources.
36 'browser/browser_resources.grd', 36 'browser/browser_resources.grd',
37 'common/common_resources.grd', 37 'common/common_resources.grd',
38 'renderer/renderer_resources.grd', 38 'renderer/renderer_resources.grd',
39 ], 39 ],
40 'grit_info_cmd': ['python', '../tools/grit/grit_info.py'], 40 'grit_info_cmd': ['python', '../tools/grit/grit_info.py',],
41 'grit_cmd': ['python', '../tools/grit/grit.py'], 41 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py',],
42 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'],
43 # TODO: remove this helper when we have loops in GYP 42 # TODO: remove this helper when we have loops in GYP
44 'apply_locales_cmd': ['python', 'tools/build/apply_locales.py'], 43 'apply_locales_cmd': ['python', 'tools/build/apply_locales.py',],
45 'browser_tests_sources': [ 44 'browser_tests_sources': [
46 'browser/browser_browsertest.cc', 45 'browser/browser_browsertest.cc',
47 'browser/browser_init_browsertest.cc', 46 'browser/browser_init_browsertest.cc',
48 'browser/crash_recovery_browsertest.cc', 47 'browser/crash_recovery_browsertest.cc',
49 'browser/download/save_page_browsertest.cc', 48 'browser/download/save_page_browsertest.cc',
50 'browser/gtk/bookmark_manager_browsertest.cc', 49 'browser/gtk/bookmark_manager_browsertest.cc',
51 'browser/gtk/view_id_util_browsertest.cc', 50 'browser/gtk/view_id_util_browsertest.cc',
52 'browser/ssl/ssl_browser_tests.cc', 51 'browser/ssl/ssl_browser_tests.cc',
53 'browser/extensions/cross_origin_xhr_apitest.cc', 52 'browser/extensions/cross_origin_xhr_apitest.cc',
54 'browser/extensions/execute_script_apitest.cc', 53 'browser/extensions/execute_script_apitest.cc',
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 }, { # else: branding!="Chrome" 190 }, { # else: branding!="Chrome"
192 'chrome_build': '_chromium', 191 'chrome_build': '_chromium',
193 'branded_env': 'CHROMIUM_BUILD=chromium', 192 'branded_env': 'CHROMIUM_BUILD=chromium',
194 }], 193 }],
195 ], 194 ],
196 }, 195 },
197 'inputs': [ 196 'inputs': [
198 '<@(chrome_resources_inputs)', 197 '<@(chrome_resources_inputs)',
199 ], 198 ],
200 'outputs': [ 199 'outputs': [
201 '<(grit_out_dir)/<(RULE_INPUT_ROOT)/grit/<(RULE_INPUT_ROOT).h', 200 '<(grit_out_dir)/grit/<(RULE_INPUT_ROOT).h',
202 '<(grit_out_dir)/<(RULE_INPUT_ROOT)/<(RULE_INPUT_ROOT).pak', 201 '<(grit_out_dir)/<(RULE_INPUT_ROOT).pak',
203 # TODO(bradnelson): move to something like this instead 202 # TODO(bradnelson): move to something like this instead
204 #'<!@(<(grit_info_cmd) --outputs \'<(grit_out_dir)/<(RULE_INPUT_ROOT )\' <(chrome_resources_grds))', 203 #'<!@(<(grit_info_cmd) --outputs \'<(grit_out_dir)\' <(chrome_resour ces_grds))',
205 # This currently cannot work because gyp only evaluates the 204 # This currently cannot work because gyp only evaluates the
206 # outputs once (rather than per case where the rule applies). 205 # outputs once (rather than per case where the rule applies).
207 # This means you end up with all the outputs from all the grd 206 # This means you end up with all the outputs from all the grd
208 # files, which angers scons and confuses vstudio. 207 # files, which angers scons and confuses vstudio.
209 # One alternative would be to turn this into several actions, 208 # One alternative would be to turn this into several actions,
210 # but that would be rather verbose. 209 # but that would be rather verbose.
211 ], 210 ],
212 'action': ['<@(grit_cmd)', '-i', 211 'action': ['python', '../tools/grit/grit.py', '-i',
213 '<(RULE_INPUT_PATH)', 212 '<(RULE_INPUT_PATH)',
214 'build', '-o', '<(grit_out_dir)/<(RULE_INPUT_ROOT)', 213 'build', '-o', '<(grit_out_dir)',
215 '-D', '<(chrome_build)', 214 '-D', '<(chrome_build)',
216 '-E', '<(branded_env)', 215 '-E', '<(branded_env)',
217 ], 216 ],
218 'conditions': [ 217 'conditions': [
219 ['use_titlecase_in_grd_files==1', { 218 ['use_titlecase_in_grd_files==1', {
220 'action': ['-D', 'use_titlecase'], 219 'action': ['-D', 'use_titlecase'],
221 }], 220 }],
222 ], 221 ],
223 'message': 'Generating resources from <(RULE_INPUT_PATH)', 222 'message': 'Generating resources from <(RULE_INPUT_PATH)',
224 }, 223 },
225 ], 224 ],
226 'sources': [ 225 'sources': [
227 '<@(chrome_resources_grds)', 226 '<@(chrome_resources_grds)',
228 '<@(chrome_resources_inputs)', 227 '<@(chrome_resources_inputs)',
229 ], 228 ],
230 'direct_dependent_settings': { 229 'direct_dependent_settings': {
231 'include_dirs': [ 230 'include_dirs': [
232 '<(grit_out_dir)/browser_resources', 231 '<(grit_out_dir)',
233 '<(grit_out_dir)/common_resources',
234 '<(grit_out_dir)/renderer_resources',
235 ], 232 ],
236 }, 233 },
237 'conditions': [ 234 'conditions': [
238 ['OS=="win"', { 235 ['OS=="win"', {
239 'dependencies': ['../build/win/system.gyp:cygwin'], 236 'dependencies': ['../build/win/system.gyp:cygwin'],
240 }], 237 }],
241 ], 238 ],
242 }, 239 },
243 { 240 {
244 # TODO(mark): It would be better if each static library that needed 241 # TODO(mark): It would be better if each static library that needed
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 'chrome_build': '_google_chrome', 277 'chrome_build': '_google_chrome',
281 }, { # else: branding!="Chrome" 278 }, { # else: branding!="Chrome"
282 'chrome_build': '_chromium', 279 'chrome_build': '_chromium',
283 }], 280 }],
284 ], 281 ],
285 }, 282 },
286 'inputs': [ 283 'inputs': [
287 '<@(chrome_strings_inputs)', 284 '<@(chrome_strings_inputs)',
288 ], 285 ],
289 'outputs': [ 286 'outputs': [
290 '<(grit_out_dir)/<(RULE_INPUT_ROOT)/grit/<(RULE_INPUT_ROOT).h', 287 '<(grit_out_dir)/grit/<(RULE_INPUT_ROOT).h',
291 # TODO: remove this helper when we have loops in GYP 288 # TODO: remove this helper when we have loops in GYP
292 '>!@(<(apply_locales_cmd) \'<(grit_out_dir)/<(RULE_INPUT_ROOT)/<(RUL E_INPUT_ROOT)_ZZLOCALE.pak\' <(locales))', 289 '>!@(<(apply_locales_cmd) \'<(grit_out_dir)/<(RULE_INPUT_ROOT)_ZZLOC ALE.pak\' <(locales))',
293 # TODO(bradnelson): move to something like this 290 # TODO(bradnelson): move to something like this
294 #'<!@(<(grit_info_cmd) --outputs \'<(grit_out_dir)/<(RULE_INPUT_ROOT )\' <(chrome_strings_grds))', 291 #'<!@(<(grit_info_cmd) --outputs \'<(grit_out_dir)\' <(chrome_string s_grds))',
295 # See comment in chrome_resources as to why. 292 # See comment in chrome_resources as to why.
296 ], 293 ],
297 'action': ['<@(grit_cmd)', '-i', '<(RULE_INPUT_PATH)', 294 'action': ['python', '../tools/grit/grit.py', '-i',
298 'build', '-o', '<(grit_out_dir)/<(RULE_INPUT_ROOT)', 295 '<(RULE_INPUT_PATH)',
296 'build', '-o', '<(grit_out_dir)',
299 '-D', '<(chrome_build)'], 297 '-D', '<(chrome_build)'],
300 'conditions': [ 298 'conditions': [
301 ['chromeos==1', { 299 ['chromeos==1', {
302 'action': ['-D', 'chromeos'], 300 'action': ['-D', 'chromeos'],
303 }], 301 }],
304 ['use_titlecase_in_grd_files==1', { 302 ['use_titlecase_in_grd_files==1', {
305 'action': ['-D', 'use_titlecase'], 303 'action': ['-D', 'use_titlecase'],
306 }], 304 }],
307 ], 305 ],
308 'message': 'Generating resources from <(RULE_INPUT_PATH)', 306 'message': 'Generating resources from <(RULE_INPUT_PATH)',
309 }, 307 },
310 ], 308 ],
311 'sources': [ 309 'sources': [
312 '<@(chrome_strings_grds)', 310 '<@(chrome_strings_grds)',
313 '<@(chrome_strings_inputs)', 311 '<@(chrome_strings_inputs)',
314 ], 312 ],
315 'direct_dependent_settings': { 313 'direct_dependent_settings': {
316 'include_dirs': [ 314 'include_dirs': [
317 '<(grit_out_dir)/locale_settings', 315 '<(grit_out_dir)',
318 '<(grit_out_dir)/chromium_strings',
319 '<(grit_out_dir)/generated_resources',
320 '<(grit_out_dir)/google_chrome_strings',
321 ], 316 ],
322 }, 317 },
323 }, 318 },
324 { 319 {
325 # theme_resources also generates a .cc file, so it can't use the rules abo ve. 320 # theme_resources also generates a .cc file, so it can't use the rules abo ve.
326 'target_name': 'theme_resources', 321 'target_name': 'theme_resources',
327 'type': 'none', 322 'type': 'none',
328 'msvs_guid' : 'A158FB0A-25E4-6523-6B5A-4BB294B73D31', 323 'msvs_guid' : 'A158FB0A-25E4-6523-6B5A-4BB294B73D31',
324 'variables': {
325 'grit_path': '../tools/grit/grit.py',
326 },
329 'actions': [ 327 'actions': [
330 { 328 {
331 'action_name': 'theme_resources', 329 'action_name': 'theme_resources',
332 'variables': { 330 'variables': {
333 'input_path': 'app/theme/theme_resources.grd', 331 'input_path': 'app/theme/theme_resources.grd',
334 'conditions': [ 332 'conditions': [
335 ['branding=="Chrome"', { 333 ['branding=="Chrome"', {
336 # TODO(mmoss) The .grd files look for _google_chrome, but for 334 # TODO(mmoss) The .grd files look for _google_chrome, but for
337 # consistency they should look for GOOGLE_CHROME_BUILD like C++. 335 # consistency they should look for GOOGLE_CHROME_BUILD like C++.
338 # Clean this up when Windows moves to gyp. 336 # Clean this up when Windows moves to gyp.
339 'chrome_build': '_google_chrome', 337 'chrome_build': '_google_chrome',
340 }, { # else: branding!="Chrome" 338 }, { # else: branding!="Chrome"
341 'chrome_build': '_chromium', 339 'chrome_build': '_chromium',
342 }], 340 }],
343 ], 341 ],
344 }, 342 },
345 'inputs': [ 343 'inputs': [
346 '<!@(<(grit_info_cmd) --inputs <(input_path))', 344 '<!@(<(grit_info_cmd) --inputs <(input_path))',
347 ], 345 ],
348 'outputs': [ 346 'outputs': [
349 '<!@(<(grit_info_cmd) --outputs \'<(grit_out_dir)/theme_resources\' <(input_path))', 347 '<!@(<(grit_info_cmd) --outputs \'<(grit_out_dir)\' <(input_path))',
350 ], 348 ],
351 'action': [ 349 'action': [
352 '<@(grit_cmd)', 350 'python', '<(grit_path)',
353 '-i', '<(input_path)', 'build', 351 '-i', '<(input_path)', 'build',
354 '-o', '<(grit_out_dir)/theme_resources', 352 '-o', '<(grit_out_dir)',
355 '-D', '<(chrome_build)' 353 '-D', '<(chrome_build)'
356 ], 354 ],
357 'conditions': [ 355 'conditions': [
358 ['chromeos==1', { 356 ['chromeos==1', {
359 'action': ['-D', 'chromeos'], 357 'action': ['-D', 'chromeos'],
360 }], 358 }],
361 ['use_titlecase_in_grd_files==1', { 359 ['use_titlecase_in_grd_files==1', {
362 'action': ['-D', 'use_titlecase'], 360 'action': ['-D', 'use_titlecase'],
363 }], 361 }],
364 ], 362 ],
365 'message': 'Generating resources from <(input_path)', 363 'message': 'Generating resources from <(input_path)',
366 }, 364 },
367 ], 365 ],
368 'direct_dependent_settings': { 366 'direct_dependent_settings': {
369 'include_dirs': [ 367 'include_dirs': [
370 '<(grit_out_dir)/theme_resources', 368 '<(grit_out_dir)',
371 ], 369 ],
372 }, 370 },
373 'conditions': [ 371 'conditions': [
374 ['OS=="win"', { 372 ['OS=="win"', {
375 'dependencies': ['../build/win/system.gyp:cygwin'], 373 'dependencies': ['../build/win/system.gyp:cygwin'],
376 }], 374 }],
377 ], 375 ],
378 }, 376 },
379 { 377 {
380 'target_name': 'default_extensions', 378 'target_name': 'default_extensions',
(...skipping 2477 matching lines...) Expand 10 before | Expand all | Expand 10 after
2858 'plugin', 2856 'plugin',
2859 'chrome_resources', 2857 'chrome_resources',
2860 'chrome_strings', 2858 'chrome_strings',
2861 '../printing/printing.gyp:printing', 2859 '../printing/printing.gyp:printing',
2862 '../skia/skia.gyp:skia', 2860 '../skia/skia.gyp:skia',
2863 '../third_party/icu/icu.gyp:icui18n', 2861 '../third_party/icu/icu.gyp:icui18n',
2864 '../third_party/icu/icu.gyp:icuuc', 2862 '../third_party/icu/icu.gyp:icuuc',
2865 '../third_party/npapi/npapi.gyp:npapi', 2863 '../third_party/npapi/npapi.gyp:npapi',
2866 '../webkit/webkit.gyp:glue', 2864 '../webkit/webkit.gyp:glue',
2867 '../webkit/webkit.gyp:webkit', 2865 '../webkit/webkit.gyp:webkit',
2868 '../webkit/webkit.gyp:webkit_resources',
2869 ], 2866 ],
2870 'include_dirs': [ 2867 'include_dirs': [
2871 '..', 2868 '..',
2872 ], 2869 ],
2873 'sources': [ 2870 'sources': [
2874 # TODO(jrg): to link ipc_tests, these files need to be in renderer.a. 2871 # TODO(jrg): to link ipc_tests, these files need to be in renderer.a.
2875 # But app/ is the wrong directory for them. 2872 # But app/ is the wrong directory for them.
2876 # Better is to remove the dep of *_tests on renderer, but in the 2873 # Better is to remove the dep of *_tests on renderer, but in the
2877 # short term I'd like the build to work. 2874 # short term I'd like the build to work.
2878 'renderer/automation/dom_automation_controller.cc', 2875 'renderer/automation/dom_automation_controller.cc',
(...skipping 978 matching lines...) Expand 10 before | Expand all | Expand 10 after
3857 'msvs_guid': '76235B67-1C27-4627-8A33-4B2E1EF93EDE', 3854 'msvs_guid': '76235B67-1C27-4627-8A33-4B2E1EF93EDE',
3858 'dependencies': [ 3855 'dependencies': [
3859 'chrome', 3856 'chrome',
3860 'browser', 3857 'browser',
3861 'debugger', 3858 'debugger',
3862 'common', 3859 'common',
3863 'chrome_resources', 3860 'chrome_resources',
3864 'chrome_strings', 3861 'chrome_strings',
3865 'syncapi', 3862 'syncapi',
3866 'test_support_ui', 3863 'test_support_ui',
3867 'theme_resources',
3868 '../base/base.gyp:base', 3864 '../base/base.gyp:base',
3869 '../net/net.gyp:net', 3865 '../net/net.gyp:net',
3870 '../build/temp_gyp/googleurl.gyp:googleurl', 3866 '../build/temp_gyp/googleurl.gyp:googleurl',
3871 '../skia/skia.gyp:skia', 3867 '../skia/skia.gyp:skia',
3872 '../testing/gtest.gyp:gtest', 3868 '../testing/gtest.gyp:gtest',
3873 '../third_party/icu/icu.gyp:icui18n', 3869 '../third_party/icu/icu.gyp:icui18n',
3874 '../third_party/icu/icu.gyp:icuuc', 3870 '../third_party/icu/icu.gyp:icuuc',
3875 '../third_party/libxml/libxml.gyp:libxml', 3871 '../third_party/libxml/libxml.gyp:libxml',
3876 ], 3872 ],
3877 'include_dirs': [ 3873 'include_dirs': [
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
4007 'msvs_guid': 'ECFC2BEC-9FC0-4AD9-9649-5F26793F65FC', 4003 'msvs_guid': 'ECFC2BEC-9FC0-4AD9-9649-5F26793F65FC',
4008 'dependencies': [ 4004 'dependencies': [
4009 'chrome', 4005 'chrome',
4010 'browser', 4006 'browser',
4011 'chrome_resources', 4007 'chrome_resources',
4012 'chrome_strings', 4008 'chrome_strings',
4013 'common', 4009 'common',
4014 'debugger', 4010 'debugger',
4015 'renderer', 4011 'renderer',
4016 'syncapi', 4012 'syncapi',
4017 'theme_resources',
4018 'test_support_unit', 4013 'test_support_unit',
4019 'utility', 4014 'utility',
4020 '../app/app.gyp:app_resources', 4015 '../app/app.gyp:app_resources',
4021 '../ipc/ipc.gyp:ipc', 4016 '../ipc/ipc.gyp:ipc',
4022 '../net/net.gyp:net_resources', 4017 '../net/net.gyp:net_resources',
4023 '../net/net.gyp:net_test_support', 4018 '../net/net.gyp:net_test_support',
4024 '../printing/printing.gyp:printing', 4019 '../printing/printing.gyp:printing',
4025 '../webkit/webkit.gyp:webkit', 4020 '../webkit/webkit.gyp:webkit',
4026 '../webkit/webkit.gyp:webkit_resources', 4021 '../webkit/webkit.gyp:webkit_resources',
4027 '../skia/skia.gyp:skia', 4022 '../skia/skia.gyp:skia',
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
4637 'target_name': 'page_cycler_tests', 4632 'target_name': 'page_cycler_tests',
4638 'type': 'executable', 4633 'type': 'executable',
4639 'msvs_guid': 'C9E0BD1D-B175-4A91-8380-3FDC81FAB9D7', 4634 'msvs_guid': 'C9E0BD1D-B175-4A91-8380-3FDC81FAB9D7',
4640 'dependencies': [ 4635 'dependencies': [
4641 'chrome', 4636 'chrome',
4642 'chrome_resources', 4637 'chrome_resources',
4643 'chrome_strings', 4638 'chrome_strings',
4644 'debugger', 4639 'debugger',
4645 'test_support_common', 4640 'test_support_common',
4646 'test_support_ui', 4641 'test_support_ui',
4647 'theme_resources',
4648 '../base/base.gyp:base', 4642 '../base/base.gyp:base',
4649 '../skia/skia.gyp:skia', 4643 '../skia/skia.gyp:skia',
4650 '../testing/gtest.gyp:gtest', 4644 '../testing/gtest.gyp:gtest',
4651 ], 4645 ],
4652 'sources': [ 4646 'sources': [
4653 'test/page_cycler/page_cycler_test.cc', 4647 'test/page_cycler/page_cycler_test.cc',
4654 ], 4648 ],
4655 'conditions': [ 4649 'conditions': [
4656 ['OS=="linux"', { 4650 ['OS=="linux"', {
4657 'dependencies': [ 4651 'dependencies': [
(...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after
5323 'target_name': 'interactive_ui_tests', 5317 'target_name': 'interactive_ui_tests',
5324 'type': 'executable', 5318 'type': 'executable',
5325 'msvs_guid': '018D4F38-6272-448F-A864-976DA09F05D0', 5319 'msvs_guid': '018D4F38-6272-448F-A864-976DA09F05D0',
5326 'dependencies': [ 5320 'dependencies': [
5327 'chrome', 5321 'chrome',
5328 'chrome_resources', 5322 'chrome_resources',
5329 'chrome_strings', 5323 'chrome_strings',
5330 'debugger', 5324 'debugger',
5331 'test_support_common', 5325 'test_support_common',
5332 'test_support_ui', 5326 'test_support_ui',
5333 'theme_resources',
5334 'syncapi', 5327 'syncapi',
5335 '../third_party/hunspell/hunspell.gyp:hunspell', 5328 '../third_party/hunspell/hunspell.gyp:hunspell',
5336 '../net/net.gyp:net_resources', 5329 '../net/net.gyp:net_resources',
5337 '../skia/skia.gyp:skia', 5330 '../skia/skia.gyp:skia',
5338 '../third_party/icu/icu.gyp:icui18n', 5331 '../third_party/icu/icu.gyp:icui18n',
5339 '../third_party/libpng/libpng.gyp:libpng', 5332 '../third_party/libpng/libpng.gyp:libpng',
5340 '../third_party/libxml/libxml.gyp:libxml', 5333 '../third_party/libxml/libxml.gyp:libxml',
5341 '../third_party/zlib/zlib.gyp:zlib', 5334 '../third_party/zlib/zlib.gyp:zlib',
5342 '../testing/gtest.gyp:gtest', 5335 '../testing/gtest.gyp:gtest',
5343 '../third_party/npapi/npapi.gyp:npapi', 5336 '../third_party/npapi/npapi.gyp:npapi',
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
5522 # Executable that runs each browser test in a new process. 5515 # Executable that runs each browser test in a new process.
5523 'target_name': 'browser_tests', 5516 'target_name': 'browser_tests',
5524 'type': 'executable', 5517 'type': 'executable',
5525 'dependencies': [ 5518 'dependencies': [
5526 'browser', 5519 'browser',
5527 'chrome', 5520 'chrome',
5528 'chrome_resources', 5521 'chrome_resources',
5529 'chrome_strings', 5522 'chrome_strings',
5530 'debugger', 5523 'debugger',
5531 'test_support_common', 5524 'test_support_common',
5532 'theme_resources',
5533 '../base/base.gyp:test_support_base', 5525 '../base/base.gyp:test_support_base',
5534 '../skia/skia.gyp:skia', 5526 '../skia/skia.gyp:skia',
5535 '../testing/gtest.gyp:gtest', 5527 '../testing/gtest.gyp:gtest',
5536 '../third_party/icu/icu.gyp:icui18n', 5528 '../third_party/icu/icu.gyp:icui18n',
5537 '../third_party/icu/icu.gyp:icuuc', 5529 '../third_party/icu/icu.gyp:icuuc',
5538 ], 5530 ],
5539 'include_dirs': [ 5531 'include_dirs': [
5540 '..', 5532 '..',
5541 ], 5533 ],
5542 'defines': [ 'ALLOW_IN_PROC_BROWSER_TEST' ], 5534 'defines': [ 'ALLOW_IN_PROC_BROWSER_TEST' ],
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after
6099 { 6091 {
6100 'target_name': 'plugin_tests', 6092 'target_name': 'plugin_tests',
6101 'type': 'executable', 6093 'type': 'executable',
6102 'msvs_guid': 'A1CAA831-C507-4B2E-87F3-AEC63C9907F9', 6094 'msvs_guid': 'A1CAA831-C507-4B2E-87F3-AEC63C9907F9',
6103 'dependencies': [ 6095 'dependencies': [
6104 'chrome_resources', 6096 'chrome_resources',
6105 'chrome_strings', 6097 'chrome_strings',
6106 'security_tests', # run time dependency 6098 'security_tests', # run time dependency
6107 'test_support_common', 6099 'test_support_common',
6108 'test_support_ui', 6100 'test_support_ui',
6109 'theme_resources',
6110 '../skia/skia.gyp:skia', 6101 '../skia/skia.gyp:skia',
6111 '../testing/gtest.gyp:gtest', 6102 '../testing/gtest.gyp:gtest',
6112 '../third_party/libxml/libxml.gyp:libxml', 6103 '../third_party/libxml/libxml.gyp:libxml',
6113 '../third_party/libxslt/libxslt.gyp:libxslt', 6104 '../third_party/libxslt/libxslt.gyp:libxslt',
6114 '../third_party/npapi/npapi.gyp:npapi', 6105 '../third_party/npapi/npapi.gyp:npapi',
6115 ], 6106 ],
6116 'include_dirs': [ 6107 'include_dirs': [
6117 '..', 6108 '..',
6118 'third_party/wtl/include', 6109 'third_party/wtl/include',
6119 ], 6110 ],
(...skipping 26 matching lines...) Expand all
6146 }, 6137 },
6147 { 6138 {
6148 'target_name': 'selenium_tests', 6139 'target_name': 'selenium_tests',
6149 'type': 'executable', 6140 'type': 'executable',
6150 'msvs_guid': 'E3749617-BA3D-4230-B54C-B758E56D9FA5', 6141 'msvs_guid': 'E3749617-BA3D-4230-B54C-B758E56D9FA5',
6151 'dependencies': [ 6142 'dependencies': [
6152 'chrome_resources', 6143 'chrome_resources',
6153 'chrome_strings', 6144 'chrome_strings',
6154 'test_support_common', 6145 'test_support_common',
6155 'test_support_ui', 6146 'test_support_ui',
6156 'theme_resources',
6157 '../skia/skia.gyp:skia', 6147 '../skia/skia.gyp:skia',
6158 '../testing/gtest.gyp:gtest', 6148 '../testing/gtest.gyp:gtest',
6159 ], 6149 ],
6160 'include_dirs': [ 6150 'include_dirs': [
6161 '..', 6151 '..',
6162 'third_party/wtl/include', 6152 'third_party/wtl/include',
6163 ], 6153 ],
6164 'sources': [ 6154 'sources': [
6165 'test/selenium/selenium_test.cc', 6155 'test/selenium/selenium_test.cc',
6166 ], 6156 ],
(...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after
6664 'defines': [ 6654 'defines': [
6665 'POSIX', 6655 'POSIX',
6666 ], 6656 ],
6667 }], 6657 }],
6668 ], 6658 ],
6669 }, 6659 },
6670 ], # targets when chrome_personalization==1 and use_syncapi_stub==0 6660 ], # targets when chrome_personalization==1 and use_syncapi_stub==0
6671 }], 6661 }],
6672 ], # 'conditions' 6662 ], # 'conditions'
6673 } 6663 }
OLDNEW
« no previous file with comments | « chrome/app/locales/locales.gyp ('k') | webkit/tools/test_shell/test_shell.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698