| OLD | NEW |
| 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 Loading... |
| 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 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py',], | 41 'grit_cmd': ['python', '../tools/grit/grit.py'], |
| 42 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], |
| 42 # TODO: remove this helper when we have loops in GYP | 43 # TODO: remove this helper when we have loops in GYP |
| 43 'apply_locales_cmd': ['python', 'tools/build/apply_locales.py',], | 44 'apply_locales_cmd': ['python', 'tools/build/apply_locales.py'], |
| 44 'browser_tests_sources': [ | 45 'browser_tests_sources': [ |
| 45 'browser/browser_browsertest.cc', | 46 'browser/browser_browsertest.cc', |
| 46 'browser/browser_init_browsertest.cc', | 47 'browser/browser_init_browsertest.cc', |
| 47 'browser/crash_recovery_browsertest.cc', | 48 'browser/crash_recovery_browsertest.cc', |
| 48 'browser/download/save_page_browsertest.cc', | 49 'browser/download/save_page_browsertest.cc', |
| 49 'browser/gtk/bookmark_manager_browsertest.cc', | 50 'browser/gtk/bookmark_manager_browsertest.cc', |
| 50 'browser/gtk/view_id_util_browsertest.cc', | 51 'browser/gtk/view_id_util_browsertest.cc', |
| 51 'browser/ssl/ssl_browser_tests.cc', | 52 'browser/ssl/ssl_browser_tests.cc', |
| 52 'browser/extensions/cross_origin_xhr_apitest.cc', | 53 'browser/extensions/cross_origin_xhr_apitest.cc', |
| 53 'browser/extensions/execute_script_apitest.cc', | 54 'browser/extensions/execute_script_apitest.cc', |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 }, { # else: branding!="Chrome" | 191 }, { # else: branding!="Chrome" |
| 191 'chrome_build': '_chromium', | 192 'chrome_build': '_chromium', |
| 192 'branded_env': 'CHROMIUM_BUILD=chromium', | 193 'branded_env': 'CHROMIUM_BUILD=chromium', |
| 193 }], | 194 }], |
| 194 ], | 195 ], |
| 195 }, | 196 }, |
| 196 'inputs': [ | 197 'inputs': [ |
| 197 '<@(chrome_resources_inputs)', | 198 '<@(chrome_resources_inputs)', |
| 198 ], | 199 ], |
| 199 'outputs': [ | 200 'outputs': [ |
| 200 '<(grit_out_dir)/grit/<(RULE_INPUT_ROOT).h', | 201 '<(grit_out_dir)/<(RULE_INPUT_ROOT)/grit/<(RULE_INPUT_ROOT).h', |
| 201 '<(grit_out_dir)/<(RULE_INPUT_ROOT).pak', | 202 '<(grit_out_dir)/<(RULE_INPUT_ROOT)/<(RULE_INPUT_ROOT).pak', |
| 202 # TODO(bradnelson): move to something like this instead | 203 # TODO(bradnelson): move to something like this instead |
| 203 #'<!@(<(grit_info_cmd) --outputs \'<(grit_out_dir)\' <(chrome_resour
ces_grds))', | 204 #'<!@(<(grit_info_cmd) --outputs \'<(grit_out_dir)/<(RULE_INPUT_ROOT
)\' <(chrome_resources_grds))', |
| 204 # This currently cannot work because gyp only evaluates the | 205 # This currently cannot work because gyp only evaluates the |
| 205 # outputs once (rather than per case where the rule applies). | 206 # outputs once (rather than per case where the rule applies). |
| 206 # This means you end up with all the outputs from all the grd | 207 # This means you end up with all the outputs from all the grd |
| 207 # files, which angers scons and confuses vstudio. | 208 # files, which angers scons and confuses vstudio. |
| 208 # One alternative would be to turn this into several actions, | 209 # One alternative would be to turn this into several actions, |
| 209 # but that would be rather verbose. | 210 # but that would be rather verbose. |
| 210 ], | 211 ], |
| 211 'action': ['python', '../tools/grit/grit.py', '-i', | 212 'action': ['<@(grit_cmd)', '-i', |
| 212 '<(RULE_INPUT_PATH)', | 213 '<(RULE_INPUT_PATH)', |
| 213 'build', '-o', '<(grit_out_dir)', | 214 'build', '-o', '<(grit_out_dir)/<(RULE_INPUT_ROOT)', |
| 214 '-D', '<(chrome_build)', | 215 '-D', '<(chrome_build)', |
| 215 '-E', '<(branded_env)', | 216 '-E', '<(branded_env)', |
| 216 ], | 217 ], |
| 217 'conditions': [ | 218 'conditions': [ |
| 218 ['use_titlecase_in_grd_files==1', { | 219 ['use_titlecase_in_grd_files==1', { |
| 219 'action': ['-D', 'use_titlecase'], | 220 'action': ['-D', 'use_titlecase'], |
| 220 }], | 221 }], |
| 221 ], | 222 ], |
| 222 'message': 'Generating resources from <(RULE_INPUT_PATH)', | 223 'message': 'Generating resources from <(RULE_INPUT_PATH)', |
| 223 }, | 224 }, |
| 224 ], | 225 ], |
| 225 'sources': [ | 226 'sources': [ |
| 226 '<@(chrome_resources_grds)', | 227 '<@(chrome_resources_grds)', |
| 227 '<@(chrome_resources_inputs)', | 228 '<@(chrome_resources_inputs)', |
| 228 ], | 229 ], |
| 229 'direct_dependent_settings': { | 230 'direct_dependent_settings': { |
| 230 'include_dirs': [ | 231 'include_dirs': [ |
| 231 '<(grit_out_dir)', | 232 '<(grit_out_dir)/browser_resources', |
| 233 '<(grit_out_dir)/common_resources', |
| 234 '<(grit_out_dir)/renderer_resources', |
| 232 ], | 235 ], |
| 233 }, | 236 }, |
| 234 'conditions': [ | 237 'conditions': [ |
| 235 ['OS=="win"', { | 238 ['OS=="win"', { |
| 236 'dependencies': ['../build/win/system.gyp:cygwin'], | 239 'dependencies': ['../build/win/system.gyp:cygwin'], |
| 237 }], | 240 }], |
| 238 ], | 241 ], |
| 239 }, | 242 }, |
| 240 { | 243 { |
| 241 # TODO(mark): It would be better if each static library that needed | 244 # TODO(mark): It would be better if each static library that needed |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 'chrome_build': '_google_chrome', | 280 'chrome_build': '_google_chrome', |
| 278 }, { # else: branding!="Chrome" | 281 }, { # else: branding!="Chrome" |
| 279 'chrome_build': '_chromium', | 282 'chrome_build': '_chromium', |
| 280 }], | 283 }], |
| 281 ], | 284 ], |
| 282 }, | 285 }, |
| 283 'inputs': [ | 286 'inputs': [ |
| 284 '<@(chrome_strings_inputs)', | 287 '<@(chrome_strings_inputs)', |
| 285 ], | 288 ], |
| 286 'outputs': [ | 289 'outputs': [ |
| 287 '<(grit_out_dir)/grit/<(RULE_INPUT_ROOT).h', | 290 '<(grit_out_dir)/<(RULE_INPUT_ROOT)/grit/<(RULE_INPUT_ROOT).h', |
| 288 # TODO: remove this helper when we have loops in GYP | 291 # TODO: remove this helper when we have loops in GYP |
| 289 '>!@(<(apply_locales_cmd) \'<(grit_out_dir)/<(RULE_INPUT_ROOT)_ZZLOC
ALE.pak\' <(locales))', | 292 '>!@(<(apply_locales_cmd) \'<(grit_out_dir)/<(RULE_INPUT_ROOT)/<(RUL
E_INPUT_ROOT)_ZZLOCALE.pak\' <(locales))', |
| 290 # TODO(bradnelson): move to something like this | 293 # TODO(bradnelson): move to something like this |
| 291 #'<!@(<(grit_info_cmd) --outputs \'<(grit_out_dir)\' <(chrome_string
s_grds))', | 294 #'<!@(<(grit_info_cmd) --outputs \'<(grit_out_dir)/<(RULE_INPUT_ROOT
)\' <(chrome_strings_grds))', |
| 292 # See comment in chrome_resources as to why. | 295 # See comment in chrome_resources as to why. |
| 293 ], | 296 ], |
| 294 'action': ['python', '../tools/grit/grit.py', '-i', | 297 'action': ['<@(grit_cmd)', '-i', '<(RULE_INPUT_PATH)', |
| 295 '<(RULE_INPUT_PATH)', | 298 'build', '-o', '<(grit_out_dir)/<(RULE_INPUT_ROOT)', |
| 296 'build', '-o', '<(grit_out_dir)', | |
| 297 '-D', '<(chrome_build)'], | 299 '-D', '<(chrome_build)'], |
| 298 'conditions': [ | 300 'conditions': [ |
| 299 ['chromeos==1', { | 301 ['chromeos==1', { |
| 300 'action': ['-D', 'chromeos'], | 302 'action': ['-D', 'chromeos'], |
| 301 }], | 303 }], |
| 302 ['use_titlecase_in_grd_files==1', { | 304 ['use_titlecase_in_grd_files==1', { |
| 303 'action': ['-D', 'use_titlecase'], | 305 'action': ['-D', 'use_titlecase'], |
| 304 }], | 306 }], |
| 305 ], | 307 ], |
| 306 'message': 'Generating resources from <(RULE_INPUT_PATH)', | 308 'message': 'Generating resources from <(RULE_INPUT_PATH)', |
| 307 }, | 309 }, |
| 308 ], | 310 ], |
| 309 'sources': [ | 311 'sources': [ |
| 310 '<@(chrome_strings_grds)', | 312 '<@(chrome_strings_grds)', |
| 311 '<@(chrome_strings_inputs)', | 313 '<@(chrome_strings_inputs)', |
| 312 ], | 314 ], |
| 313 'direct_dependent_settings': { | 315 'direct_dependent_settings': { |
| 314 'include_dirs': [ | 316 'include_dirs': [ |
| 315 '<(grit_out_dir)', | 317 '<(grit_out_dir)/locale_settings', |
| 318 '<(grit_out_dir)/chromium_strings', |
| 319 '<(grit_out_dir)/generated_resources', |
| 320 '<(grit_out_dir)/google_chrome_strings', |
| 316 ], | 321 ], |
| 317 }, | 322 }, |
| 318 }, | 323 }, |
| 319 { | 324 { |
| 320 # theme_resources also generates a .cc file, so it can't use the rules abo
ve. | 325 # theme_resources also generates a .cc file, so it can't use the rules abo
ve. |
| 321 'target_name': 'theme_resources', | 326 'target_name': 'theme_resources', |
| 322 'type': 'none', | 327 'type': 'none', |
| 323 'msvs_guid' : 'A158FB0A-25E4-6523-6B5A-4BB294B73D31', | 328 'msvs_guid' : 'A158FB0A-25E4-6523-6B5A-4BB294B73D31', |
| 324 'variables': { | |
| 325 'grit_path': '../tools/grit/grit.py', | |
| 326 }, | |
| 327 'actions': [ | 329 'actions': [ |
| 328 { | 330 { |
| 329 'action_name': 'theme_resources', | 331 'action_name': 'theme_resources', |
| 330 'variables': { | 332 'variables': { |
| 331 'input_path': 'app/theme/theme_resources.grd', | 333 'input_path': 'app/theme/theme_resources.grd', |
| 332 'conditions': [ | 334 'conditions': [ |
| 333 ['branding=="Chrome"', { | 335 ['branding=="Chrome"', { |
| 334 # TODO(mmoss) The .grd files look for _google_chrome, but for | 336 # TODO(mmoss) The .grd files look for _google_chrome, but for |
| 335 # consistency they should look for GOOGLE_CHROME_BUILD like C++. | 337 # consistency they should look for GOOGLE_CHROME_BUILD like C++. |
| 336 # Clean this up when Windows moves to gyp. | 338 # Clean this up when Windows moves to gyp. |
| 337 'chrome_build': '_google_chrome', | 339 'chrome_build': '_google_chrome', |
| 338 }, { # else: branding!="Chrome" | 340 }, { # else: branding!="Chrome" |
| 339 'chrome_build': '_chromium', | 341 'chrome_build': '_chromium', |
| 340 }], | 342 }], |
| 341 ], | 343 ], |
| 342 }, | 344 }, |
| 343 'inputs': [ | 345 'inputs': [ |
| 344 '<!@(<(grit_info_cmd) --inputs <(input_path))', | 346 '<!@(<(grit_info_cmd) --inputs <(input_path))', |
| 345 ], | 347 ], |
| 346 'outputs': [ | 348 'outputs': [ |
| 347 '<!@(<(grit_info_cmd) --outputs \'<(grit_out_dir)\' <(input_path))', | 349 '<!@(<(grit_info_cmd) --outputs \'<(grit_out_dir)/theme_resources\'
<(input_path))', |
| 348 ], | 350 ], |
| 349 'action': [ | 351 'action': [ |
| 350 'python', '<(grit_path)', | 352 '<@(grit_cmd)', |
| 351 '-i', '<(input_path)', 'build', | 353 '-i', '<(input_path)', 'build', |
| 352 '-o', '<(grit_out_dir)', | 354 '-o', '<(grit_out_dir)/theme_resources', |
| 353 '-D', '<(chrome_build)' | 355 '-D', '<(chrome_build)' |
| 354 ], | 356 ], |
| 355 'conditions': [ | 357 'conditions': [ |
| 356 ['chromeos==1', { | 358 ['chromeos==1', { |
| 357 'action': ['-D', 'chromeos'], | 359 'action': ['-D', 'chromeos'], |
| 358 }], | 360 }], |
| 359 ['use_titlecase_in_grd_files==1', { | 361 ['use_titlecase_in_grd_files==1', { |
| 360 'action': ['-D', 'use_titlecase'], | 362 'action': ['-D', 'use_titlecase'], |
| 361 }], | 363 }], |
| 362 ], | 364 ], |
| 363 'message': 'Generating resources from <(input_path)', | 365 'message': 'Generating resources from <(input_path)', |
| 364 }, | 366 }, |
| 365 ], | 367 ], |
| 366 'direct_dependent_settings': { | 368 'direct_dependent_settings': { |
| 367 'include_dirs': [ | 369 'include_dirs': [ |
| 368 '<(grit_out_dir)', | 370 '<(grit_out_dir)/theme_resources', |
| 369 ], | 371 ], |
| 370 }, | 372 }, |
| 371 'conditions': [ | 373 'conditions': [ |
| 372 ['OS=="win"', { | 374 ['OS=="win"', { |
| 373 'dependencies': ['../build/win/system.gyp:cygwin'], | 375 'dependencies': ['../build/win/system.gyp:cygwin'], |
| 374 }], | 376 }], |
| 375 ], | 377 ], |
| 376 }, | 378 }, |
| 377 { | 379 { |
| 378 'target_name': 'default_extensions', | 380 'target_name': 'default_extensions', |
| (...skipping 2470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2849 'plugin', | 2851 'plugin', |
| 2850 'chrome_resources', | 2852 'chrome_resources', |
| 2851 'chrome_strings', | 2853 'chrome_strings', |
| 2852 '../printing/printing.gyp:printing', | 2854 '../printing/printing.gyp:printing', |
| 2853 '../skia/skia.gyp:skia', | 2855 '../skia/skia.gyp:skia', |
| 2854 '../third_party/icu/icu.gyp:icui18n', | 2856 '../third_party/icu/icu.gyp:icui18n', |
| 2855 '../third_party/icu/icu.gyp:icuuc', | 2857 '../third_party/icu/icu.gyp:icuuc', |
| 2856 '../third_party/npapi/npapi.gyp:npapi', | 2858 '../third_party/npapi/npapi.gyp:npapi', |
| 2857 '../webkit/webkit.gyp:glue', | 2859 '../webkit/webkit.gyp:glue', |
| 2858 '../webkit/webkit.gyp:webkit', | 2860 '../webkit/webkit.gyp:webkit', |
| 2861 '../webkit/webkit.gyp:webkit_resources', |
| 2859 ], | 2862 ], |
| 2860 'include_dirs': [ | 2863 'include_dirs': [ |
| 2861 '..', | 2864 '..', |
| 2862 ], | 2865 ], |
| 2863 'sources': [ | 2866 'sources': [ |
| 2864 # TODO(jrg): to link ipc_tests, these files need to be in renderer.a. | 2867 # TODO(jrg): to link ipc_tests, these files need to be in renderer.a. |
| 2865 # But app/ is the wrong directory for them. | 2868 # But app/ is the wrong directory for them. |
| 2866 # Better is to remove the dep of *_tests on renderer, but in the | 2869 # Better is to remove the dep of *_tests on renderer, but in the |
| 2867 # short term I'd like the build to work. | 2870 # short term I'd like the build to work. |
| 2868 'renderer/automation/dom_automation_controller.cc', | 2871 'renderer/automation/dom_automation_controller.cc', |
| (...skipping 977 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3846 'msvs_guid': '76235B67-1C27-4627-8A33-4B2E1EF93EDE', | 3849 'msvs_guid': '76235B67-1C27-4627-8A33-4B2E1EF93EDE', |
| 3847 'dependencies': [ | 3850 'dependencies': [ |
| 3848 'chrome', | 3851 'chrome', |
| 3849 'browser', | 3852 'browser', |
| 3850 'debugger', | 3853 'debugger', |
| 3851 'common', | 3854 'common', |
| 3852 'chrome_resources', | 3855 'chrome_resources', |
| 3853 'chrome_strings', | 3856 'chrome_strings', |
| 3854 'syncapi', | 3857 'syncapi', |
| 3855 'test_support_ui', | 3858 'test_support_ui', |
| 3859 'theme_resources', |
| 3856 '../base/base.gyp:base', | 3860 '../base/base.gyp:base', |
| 3857 '../net/net.gyp:net', | 3861 '../net/net.gyp:net', |
| 3858 '../build/temp_gyp/googleurl.gyp:googleurl', | 3862 '../build/temp_gyp/googleurl.gyp:googleurl', |
| 3859 '../skia/skia.gyp:skia', | 3863 '../skia/skia.gyp:skia', |
| 3860 '../testing/gtest.gyp:gtest', | 3864 '../testing/gtest.gyp:gtest', |
| 3861 '../third_party/icu/icu.gyp:icui18n', | 3865 '../third_party/icu/icu.gyp:icui18n', |
| 3862 '../third_party/icu/icu.gyp:icuuc', | 3866 '../third_party/icu/icu.gyp:icuuc', |
| 3863 '../third_party/libxml/libxml.gyp:libxml', | 3867 '../third_party/libxml/libxml.gyp:libxml', |
| 3864 ], | 3868 ], |
| 3865 'include_dirs': [ | 3869 'include_dirs': [ |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3995 'msvs_guid': 'ECFC2BEC-9FC0-4AD9-9649-5F26793F65FC', | 3999 'msvs_guid': 'ECFC2BEC-9FC0-4AD9-9649-5F26793F65FC', |
| 3996 'dependencies': [ | 4000 'dependencies': [ |
| 3997 'chrome', | 4001 'chrome', |
| 3998 'browser', | 4002 'browser', |
| 3999 'chrome_resources', | 4003 'chrome_resources', |
| 4000 'chrome_strings', | 4004 'chrome_strings', |
| 4001 'common', | 4005 'common', |
| 4002 'debugger', | 4006 'debugger', |
| 4003 'renderer', | 4007 'renderer', |
| 4004 'syncapi', | 4008 'syncapi', |
| 4009 'theme_resources', |
| 4005 'test_support_unit', | 4010 'test_support_unit', |
| 4006 'utility', | 4011 'utility', |
| 4007 '../app/app.gyp:app_resources', | 4012 '../app/app.gyp:app_resources', |
| 4008 '../ipc/ipc.gyp:ipc', | 4013 '../ipc/ipc.gyp:ipc', |
| 4009 '../net/net.gyp:net_resources', | 4014 '../net/net.gyp:net_resources', |
| 4010 '../net/net.gyp:net_test_support', | 4015 '../net/net.gyp:net_test_support', |
| 4011 '../printing/printing.gyp:printing', | 4016 '../printing/printing.gyp:printing', |
| 4012 '../webkit/webkit.gyp:webkit', | 4017 '../webkit/webkit.gyp:webkit', |
| 4013 '../webkit/webkit.gyp:webkit_resources', | 4018 '../webkit/webkit.gyp:webkit_resources', |
| 4014 '../skia/skia.gyp:skia', | 4019 '../skia/skia.gyp:skia', |
| (...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4617 'target_name': 'page_cycler_tests', | 4622 'target_name': 'page_cycler_tests', |
| 4618 'type': 'executable', | 4623 'type': 'executable', |
| 4619 'msvs_guid': 'C9E0BD1D-B175-4A91-8380-3FDC81FAB9D7', | 4624 'msvs_guid': 'C9E0BD1D-B175-4A91-8380-3FDC81FAB9D7', |
| 4620 'dependencies': [ | 4625 'dependencies': [ |
| 4621 'chrome', | 4626 'chrome', |
| 4622 'chrome_resources', | 4627 'chrome_resources', |
| 4623 'chrome_strings', | 4628 'chrome_strings', |
| 4624 'debugger', | 4629 'debugger', |
| 4625 'test_support_common', | 4630 'test_support_common', |
| 4626 'test_support_ui', | 4631 'test_support_ui', |
| 4632 'theme_resources', |
| 4627 '../base/base.gyp:base', | 4633 '../base/base.gyp:base', |
| 4628 '../skia/skia.gyp:skia', | 4634 '../skia/skia.gyp:skia', |
| 4629 '../testing/gtest.gyp:gtest', | 4635 '../testing/gtest.gyp:gtest', |
| 4630 ], | 4636 ], |
| 4631 'sources': [ | 4637 'sources': [ |
| 4632 'test/page_cycler/page_cycler_test.cc', | 4638 'test/page_cycler/page_cycler_test.cc', |
| 4633 ], | 4639 ], |
| 4634 'conditions': [ | 4640 'conditions': [ |
| 4635 ['OS=="linux"', { | 4641 ['OS=="linux"', { |
| 4636 'dependencies': [ | 4642 'dependencies': [ |
| (...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5302 'target_name': 'interactive_ui_tests', | 5308 'target_name': 'interactive_ui_tests', |
| 5303 'type': 'executable', | 5309 'type': 'executable', |
| 5304 'msvs_guid': '018D4F38-6272-448F-A864-976DA09F05D0', | 5310 'msvs_guid': '018D4F38-6272-448F-A864-976DA09F05D0', |
| 5305 'dependencies': [ | 5311 'dependencies': [ |
| 5306 'chrome', | 5312 'chrome', |
| 5307 'chrome_resources', | 5313 'chrome_resources', |
| 5308 'chrome_strings', | 5314 'chrome_strings', |
| 5309 'debugger', | 5315 'debugger', |
| 5310 'test_support_common', | 5316 'test_support_common', |
| 5311 'test_support_ui', | 5317 'test_support_ui', |
| 5318 'theme_resources', |
| 5312 'syncapi', | 5319 'syncapi', |
| 5313 '../third_party/hunspell/hunspell.gyp:hunspell', | 5320 '../third_party/hunspell/hunspell.gyp:hunspell', |
| 5314 '../net/net.gyp:net_resources', | 5321 '../net/net.gyp:net_resources', |
| 5315 '../skia/skia.gyp:skia', | 5322 '../skia/skia.gyp:skia', |
| 5316 '../third_party/icu/icu.gyp:icui18n', | 5323 '../third_party/icu/icu.gyp:icui18n', |
| 5317 '../third_party/libpng/libpng.gyp:libpng', | 5324 '../third_party/libpng/libpng.gyp:libpng', |
| 5318 '../third_party/libxml/libxml.gyp:libxml', | 5325 '../third_party/libxml/libxml.gyp:libxml', |
| 5319 '../third_party/zlib/zlib.gyp:zlib', | 5326 '../third_party/zlib/zlib.gyp:zlib', |
| 5320 '../testing/gtest.gyp:gtest', | 5327 '../testing/gtest.gyp:gtest', |
| 5321 '../third_party/npapi/npapi.gyp:npapi', | 5328 '../third_party/npapi/npapi.gyp:npapi', |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5500 # Executable that runs each browser test in a new process. | 5507 # Executable that runs each browser test in a new process. |
| 5501 'target_name': 'browser_tests', | 5508 'target_name': 'browser_tests', |
| 5502 'type': 'executable', | 5509 'type': 'executable', |
| 5503 'dependencies': [ | 5510 'dependencies': [ |
| 5504 'browser', | 5511 'browser', |
| 5505 'chrome', | 5512 'chrome', |
| 5506 'chrome_resources', | 5513 'chrome_resources', |
| 5507 'chrome_strings', | 5514 'chrome_strings', |
| 5508 'debugger', | 5515 'debugger', |
| 5509 'test_support_common', | 5516 'test_support_common', |
| 5517 'theme_resources', |
| 5510 '../base/base.gyp:test_support_base', | 5518 '../base/base.gyp:test_support_base', |
| 5511 '../skia/skia.gyp:skia', | 5519 '../skia/skia.gyp:skia', |
| 5512 '../testing/gtest.gyp:gtest', | 5520 '../testing/gtest.gyp:gtest', |
| 5513 '../third_party/icu/icu.gyp:icui18n', | 5521 '../third_party/icu/icu.gyp:icui18n', |
| 5514 '../third_party/icu/icu.gyp:icuuc', | 5522 '../third_party/icu/icu.gyp:icuuc', |
| 5515 ], | 5523 ], |
| 5516 'include_dirs': [ | 5524 'include_dirs': [ |
| 5517 '..', | 5525 '..', |
| 5518 ], | 5526 ], |
| 5519 'defines': [ 'ALLOW_IN_PROC_BROWSER_TEST' ], | 5527 'defines': [ 'ALLOW_IN_PROC_BROWSER_TEST' ], |
| (...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6076 { | 6084 { |
| 6077 'target_name': 'plugin_tests', | 6085 'target_name': 'plugin_tests', |
| 6078 'type': 'executable', | 6086 'type': 'executable', |
| 6079 'msvs_guid': 'A1CAA831-C507-4B2E-87F3-AEC63C9907F9', | 6087 'msvs_guid': 'A1CAA831-C507-4B2E-87F3-AEC63C9907F9', |
| 6080 'dependencies': [ | 6088 'dependencies': [ |
| 6081 'chrome_resources', | 6089 'chrome_resources', |
| 6082 'chrome_strings', | 6090 'chrome_strings', |
| 6083 'security_tests', # run time dependency | 6091 'security_tests', # run time dependency |
| 6084 'test_support_common', | 6092 'test_support_common', |
| 6085 'test_support_ui', | 6093 'test_support_ui', |
| 6094 'theme_resources', |
| 6086 '../skia/skia.gyp:skia', | 6095 '../skia/skia.gyp:skia', |
| 6087 '../testing/gtest.gyp:gtest', | 6096 '../testing/gtest.gyp:gtest', |
| 6088 '../third_party/libxml/libxml.gyp:libxml', | 6097 '../third_party/libxml/libxml.gyp:libxml', |
| 6089 '../third_party/libxslt/libxslt.gyp:libxslt', | 6098 '../third_party/libxslt/libxslt.gyp:libxslt', |
| 6090 '../third_party/npapi/npapi.gyp:npapi', | 6099 '../third_party/npapi/npapi.gyp:npapi', |
| 6091 ], | 6100 ], |
| 6092 'include_dirs': [ | 6101 'include_dirs': [ |
| 6093 '..', | 6102 '..', |
| 6094 'third_party/wtl/include', | 6103 'third_party/wtl/include', |
| 6095 ], | 6104 ], |
| (...skipping 26 matching lines...) Expand all Loading... |
| 6122 }, | 6131 }, |
| 6123 { | 6132 { |
| 6124 'target_name': 'selenium_tests', | 6133 'target_name': 'selenium_tests', |
| 6125 'type': 'executable', | 6134 'type': 'executable', |
| 6126 'msvs_guid': 'E3749617-BA3D-4230-B54C-B758E56D9FA5', | 6135 'msvs_guid': 'E3749617-BA3D-4230-B54C-B758E56D9FA5', |
| 6127 'dependencies': [ | 6136 'dependencies': [ |
| 6128 'chrome_resources', | 6137 'chrome_resources', |
| 6129 'chrome_strings', | 6138 'chrome_strings', |
| 6130 'test_support_common', | 6139 'test_support_common', |
| 6131 'test_support_ui', | 6140 'test_support_ui', |
| 6141 'theme_resources', |
| 6132 '../skia/skia.gyp:skia', | 6142 '../skia/skia.gyp:skia', |
| 6133 '../testing/gtest.gyp:gtest', | 6143 '../testing/gtest.gyp:gtest', |
| 6134 ], | 6144 ], |
| 6135 'include_dirs': [ | 6145 'include_dirs': [ |
| 6136 '..', | 6146 '..', |
| 6137 'third_party/wtl/include', | 6147 'third_party/wtl/include', |
| 6138 ], | 6148 ], |
| 6139 'sources': [ | 6149 'sources': [ |
| 6140 'test/selenium/selenium_test.cc', | 6150 'test/selenium/selenium_test.cc', |
| 6141 ], | 6151 ], |
| (...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6615 'dependencies': [ | 6625 'dependencies': [ |
| 6616 '../third_party/pthreads-win32/pthreads.gyp:pthreads', | 6626 '../third_party/pthreads-win32/pthreads.gyp:pthreads', |
| 6617 ], | 6627 ], |
| 6618 }], | 6628 }], |
| 6619 ], | 6629 ], |
| 6620 }, | 6630 }, |
| 6621 ], # targets when chrome_personalization==1 and use_syncapi_stub==0 | 6631 ], # targets when chrome_personalization==1 and use_syncapi_stub==0 |
| 6622 }], | 6632 }], |
| 6623 ], # 'conditions' | 6633 ], # 'conditions' |
| 6624 } | 6634 } |
| OLD | NEW |