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

Side by Side Diff: chrome/chrome_dll.gypi

Issue 7390037: Generating separate version resources for: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/chrome_exe.gypi » ('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 'target_defaults': { 5 'target_defaults': {
6 'variables': { 6 'variables': {
7 'chrome_dll_target': 0, 7 'chrome_dll_target': 0,
8 }, 8 },
9 'target_conditions': [ 9 'target_conditions': [
10 ['chrome_dll_target==1', { 10 ['chrome_dll_target==1', {
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 'dependencies': [ 71 'dependencies': [
72 '<@(chromium_dependencies)', 72 '<@(chromium_dependencies)',
73 'app/policy/cloud_policy_codegen.gyp:policy', 73 'app/policy/cloud_policy_codegen.gyp:policy',
74 ], 74 ],
75 'conditions': [ 75 'conditions': [
76 ['OS=="win"', { 76 ['OS=="win"', {
77 'product_name': 'chrome', 77 'product_name': 'chrome',
78 'dependencies': [ 78 'dependencies': [
79 # On Windows, link the dependencies (libraries) that make 79 # On Windows, link the dependencies (libraries) that make
80 # up actual Chromium functionality into this .dll. 80 # up actual Chromium functionality into this .dll.
81 'chrome_dll_version', 81 'chrome_version_resources',
82 'chrome_resources', 82 'chrome_resources',
83 'installer_util_strings', 83 'installer_util_strings',
84 '../content/content.gyp:content_worker', 84 '../content/content.gyp:content_worker',
85 '../crypto/crypto.gyp:crypto', 85 '../crypto/crypto.gyp:crypto',
86 '../printing/printing.gyp:printing', 86 '../printing/printing.gyp:printing',
87 '../net/net.gyp:net_resources', 87 '../net/net.gyp:net_resources',
88 '../third_party/cld/cld.gyp:cld', 88 '../third_party/cld/cld.gyp:cld',
89 '../views/views.gyp:views', 89 '../views/views.gyp:views',
90 '../webkit/support/webkit_support.gyp:webkit_resources', 90 '../webkit/support/webkit_support.gyp:webkit_resources',
91 ], 91 ],
92 'sources': [ 92 'sources': [
93 'app/chrome_command_ids.h', 93 'app/chrome_command_ids.h',
94 'app/chrome_dll.rc', 94 'app/chrome_dll.rc',
95 'app/chrome_dll_resource.h', 95 'app/chrome_dll_resource.h',
96 'app/chrome_main.cc', 96 'app/chrome_main.cc',
97 'app/chrome_main_win.cc', 97 'app/chrome_main_win.cc',
98 '<(SHARED_INTERMEDIATE_DIR)/chrome_dll_version/chrome_dll_versio n.rc', 98
99 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc ',
99 100
100 '../webkit/glue/resources/aliasb.cur', 101 '../webkit/glue/resources/aliasb.cur',
101 '../webkit/glue/resources/cell.cur', 102 '../webkit/glue/resources/cell.cur',
102 '../webkit/glue/resources/col_resize.cur', 103 '../webkit/glue/resources/col_resize.cur',
103 '../webkit/glue/resources/copy.cur', 104 '../webkit/glue/resources/copy.cur',
104 '../webkit/glue/resources/none.cur', 105 '../webkit/glue/resources/none.cur',
105 '../webkit/glue/resources/row_resize.cur', 106 '../webkit/glue/resources/row_resize.cur',
106 '../webkit/glue/resources/vertical_text.cur', 107 '../webkit/glue/resources/vertical_text.cur',
107 '../webkit/glue/resources/zoom_in.cur', 108 '../webkit/glue/resources/zoom_in.cur',
108 '../webkit/glue/resources/zoom_out.cur', 109 '../webkit/glue/resources/zoom_out.cur',
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
580 'type': 'shared_library', 581 'type': 'shared_library',
581 'product_name': 'nacl64', 582 'product_name': 'nacl64',
582 'variables': { 583 'variables': {
583 'chrome_dll_target': 1, 584 'chrome_dll_target': 1,
584 }, 585 },
585 'include_dirs': [ 586 'include_dirs': [
586 '..', 587 '..',
587 ], 588 ],
588 'dependencies': [ 589 'dependencies': [
589 '<@(nacl_win64_dependencies)', 590 '<@(nacl_win64_dependencies)',
590 'chrome_dll_version', 591 'chrome_version_resources',
591 'nacl_win64', 592 'nacl_win64',
592 '../base/base.gyp:base_i18n_nacl_win64', 593 '../base/base.gyp:base_i18n_nacl_win64',
593 ], 594 ],
594 'defines': [ 595 'defines': [
595 '<@(nacl_win64_defines)', 596 '<@(nacl_win64_defines)',
596 ], 597 ],
597 'sources': [ 598 'sources': [
598 'app/chrome_command_ids.h', 599 'app/chrome_command_ids.h',
599 'app/chrome_dll_resource.h', 600 'app/chrome_dll_resource.h',
600 'app/chrome_main.cc', 601 'app/chrome_main.cc',
601 'app/chrome_main_win.cc', 602 'app/chrome_main_win.cc',
602 # Parsing is needed for the UserDataDir policy which is read much 603 # Parsing is needed for the UserDataDir policy which is read much
603 # earlier than the initialization of the policy/pref system. 604 # earlier than the initialization of the policy/pref system.
604 'browser/policy/policy_path_parser_win.cc', 605 'browser/policy/policy_path_parser_win.cc',
605 'browser/renderer_host/render_process_host_dummy.cc', 606 'browser/renderer_host/render_process_host_dummy.cc',
606 'common/googleurl_dummy.cc', 607 'common/googleurl_dummy.cc',
607 '<(SHARED_INTERMEDIATE_DIR)/chrome_dll_version/chrome_dll_version.rc ', 608
609 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/nacl64_dll_version.rc',
608 610
609 # TODO: It would be nice to have these pulled in 611 # TODO: It would be nice to have these pulled in
610 # automatically from direct_dependent_settings in 612 # automatically from direct_dependent_settings in
611 # their various targets (net.gyp:net_resources, etc.), 613 # their various targets (net.gyp:net_resources, etc.),
612 # but that causes errors in other targets when 614 # but that causes errors in other targets when
613 # resulting .res files get referenced multiple times. 615 # resulting .res files get referenced multiple times.
614 '<(SHARED_INTERMEDIATE_DIR)/chrome/autofill_resources.rc', 616 '<(SHARED_INTERMEDIATE_DIR)/chrome/autofill_resources.rc',
615 '<(SHARED_INTERMEDIATE_DIR)/chrome/common_resources.rc', 617 '<(SHARED_INTERMEDIATE_DIR)/chrome/common_resources.rc',
616 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', 618 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc',
617 619
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
663 'LinkIncremental': '<(msvs_debug_link_nonincremental)', 665 'LinkIncremental': '<(msvs_debug_link_nonincremental)',
664 }, 666 },
665 }, 667 },
666 }, 668 },
667 }, 669 },
668 }, # target chrome_dll 670 }, # target chrome_dll
669 ], 671 ],
670 }], 672 }],
671 ], 673 ],
672 } 674 }
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/chrome_exe.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698