OLD | NEW |
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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'content_shell_product_name': 'Content Shell', | 7 'content_shell_product_name': 'Content Shell', |
8 # The "19" is so that sites that sniff for version think that this is | 8 # The "19" is so that sites that sniff for version think that this is |
9 # something reasonably current; the "77.34.5" is a hint that this isn't a | 9 # something reasonably current; the "77.34.5" is a hint that this isn't a |
10 # standard Chrome. | 10 # standard Chrome. |
(...skipping 18 matching lines...) Expand all Loading... |
29 'dependencies': [ | 29 'dependencies': [ |
30 'app/resources/content_resources.gyp:content_resources', | 30 'app/resources/content_resources.gyp:content_resources', |
31 'app/strings/content_strings.gyp:content_strings', | 31 'app/strings/content_strings.gyp:content_strings', |
32 'content.gyp:content_app_both', | 32 'content.gyp:content_app_both', |
33 'content.gyp:content_browser', | 33 'content.gyp:content_browser', |
34 'content.gyp:content_common', | 34 'content.gyp:content_common', |
35 'content.gyp:content_gpu', | 35 'content.gyp:content_gpu', |
36 'content.gyp:content_plugin', | 36 'content.gyp:content_plugin', |
37 'content.gyp:content_ppapi_plugin', | 37 'content.gyp:content_ppapi_plugin', |
38 'content.gyp:content_renderer', | 38 'content.gyp:content_renderer', |
| 39 'content.gyp:content_resources', |
39 'content.gyp:content_utility', | 40 'content.gyp:content_utility', |
40 'content_resources.gyp:content_resources', | |
41 'content_shell_resources', | 41 'content_shell_resources', |
42 'copy_test_netscape_plugin', | 42 'copy_test_netscape_plugin', |
43 'layouttest_support_content', | 43 'layouttest_support_content', |
44 '../base/base.gyp:base', | 44 '../base/base.gyp:base', |
45 '../base/base.gyp:base_static', | 45 '../base/base.gyp:base_static', |
46 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 46 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
47 '../cc/blink/cc_blink.gyp:cc_blink', | 47 '../cc/blink/cc_blink.gyp:cc_blink', |
48 '../cc/cc.gyp:cc', | 48 '../cc/cc.gyp:cc', |
49 '../components/components.gyp:breakpad_component', | 49 '../components/components.gyp:breakpad_component', |
50 '../gin/gin.gyp:gin', | 50 '../gin/gin.gyp:gin', |
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 { | 432 { |
433 # We build a minimal set of resources so WebKit in content_shell has | 433 # We build a minimal set of resources so WebKit in content_shell has |
434 # access to necessary resources. | 434 # access to necessary resources. |
435 # GN version: //content/shell:pak | 435 # GN version: //content/shell:pak |
436 'target_name': 'content_shell_pak', | 436 'target_name': 'content_shell_pak', |
437 'type': 'none', | 437 'type': 'none', |
438 'dependencies': [ | 438 'dependencies': [ |
439 'app/resources/content_resources.gyp:content_resources', | 439 'app/resources/content_resources.gyp:content_resources', |
440 'app/strings/content_strings.gyp:content_strings', | 440 'app/strings/content_strings.gyp:content_strings', |
441 'browser/tracing/tracing_resources.gyp:tracing_resources', | 441 'browser/tracing/tracing_resources.gyp:tracing_resources', |
442 'content_resources.gyp:content_resources', | 442 'content.gyp:content_resources', |
443 'content_shell_resources', | 443 'content_shell_resources', |
444 '<(DEPTH)/net/net.gyp:net_resources', | 444 '<(DEPTH)/net/net.gyp:net_resources', |
445 '<(DEPTH)/third_party/WebKit/public/blink_resources.gyp:blink_resources'
, | 445 '<(DEPTH)/third_party/WebKit/public/blink_resources.gyp:blink_resources'
, |
446 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources', | 446 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources', |
447 '<(DEPTH)/ui/strings/ui_strings.gyp:ui_strings', | 447 '<(DEPTH)/ui/strings/ui_strings.gyp:ui_strings', |
448 ], | 448 ], |
449 'conditions': [ | 449 'conditions': [ |
450 ['OS!="android"', { | 450 ['OS!="android"', { |
451 'dependencies': [ | 451 'dependencies': [ |
452 'browser/devtools/devtools_resources.gyp:devtools_resources', | 452 'browser/devtools/devtools_resources.gyp:devtools_resources', |
(...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1099 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1099 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
1100 '--destination_dir', '<(dest_dir)', | 1100 '--destination_dir', '<(dest_dir)', |
1101 ], | 1101 ], |
1102 }, | 1102 }, |
1103 ], | 1103 ], |
1104 }, | 1104 }, |
1105 ], | 1105 ], |
1106 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1106 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
1107 ] | 1107 ] |
1108 } | 1108 } |
OLD | NEW |