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

Side by Side Diff: chrome/chrome_dll.gypi

Issue 7706011: Use precompiled headers for most large projects. (Closed) Base URL: ssh://joi@192.168.1.201/home/joi/c/chrome/src@master
Patch Set: Created 9 years, 4 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
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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 # chrome_dll_syzygy.gypi for the subsequent defintion of the 74 # chrome_dll_syzygy.gypi for the subsequent defintion of the
75 # Windows chrome_dll target. 75 # Windows chrome_dll target.
76 'dll_target_name': 'chrome_dll_initial', 76 'dll_target_name': 'chrome_dll_initial',
77 }, { 77 }, {
78 'dll_target_name': 'chrome_dll', 78 'dll_target_name': 'chrome_dll',
79 }], 79 }],
80 ], 80 ],
81 }, 81 },
82 'target_name': '<(dll_target_name)', 82 'target_name': '<(dll_target_name)',
83 'type': 'shared_library', 83 'type': 'shared_library',
84 'msvs_disable_precompiled_header': '1',
84 'dependencies': [ 85 'dependencies': [
85 '<@(chromium_dependencies)', 86 '<@(chromium_dependencies)',
86 'app/policy/cloud_policy_codegen.gyp:policy', 87 'app/policy/cloud_policy_codegen.gyp:policy',
87 ], 88 ],
88 'conditions': [ 89 'conditions': [
89 ['OS=="win"', { 90 ['OS=="win"', {
90 'product_name': 'chrome', 91 'product_name': 'chrome',
91 'dependencies': [ 92 'dependencies': [
92 # On Windows, link the dependencies (libraries) that make 93 # On Windows, link the dependencies (libraries) that make
93 # up actual Chromium functionality into this .dll. 94 # up actual Chromium functionality into this .dll.
(...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after
731 'LinkIncremental': '<(msvs_debug_link_nonincremental)', 732 'LinkIncremental': '<(msvs_debug_link_nonincremental)',
732 }, 733 },
733 }, 734 },
734 }, 735 },
735 }, 736 },
736 }, # target chrome_dll 737 }, # target chrome_dll
737 ], 738 ],
738 }], 739 }],
739 ], 740 ],
740 } 741 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698