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

Side by Side Diff: build/standalone.gypi

Issue 295323004: adjust output dir for msvs to fix msvs link error (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: Created 6 years, 7 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 PDFium Authors. All rights reserved. 1 # Copyright 2014 PDFium 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 # Definitions to be used when building stand-alone PDFium binaries. 5 # Definitions to be used when building stand-alone PDFium binaries.
6 6
7 { 7 {
8 'variables': { 8 'variables': {
9 'component%': 'static_library', 9 'component%': 'static_library',
10 'clang%': 0, 10 'clang%': 0,
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 ], 143 ],
144 'cflags_cc': [ 144 'cflags_cc': [
145 '-Wnon-virtual-dtor', 145 '-Wnon-virtual-dtor',
146 '-fno-rtti', 146 '-fno-rtti',
147 ], 147 ],
148 'ldflags': [ 148 'ldflags': [
149 '-pthread', 149 '-pthread',
150 ], 150 ],
151 'msvs_cygwin_dirs': ['<(DEPTH)/v8/third_party/cygwin'], 151 'msvs_cygwin_dirs': ['<(DEPTH)/v8/third_party/cygwin'],
152 'msvs_configuration_attributes': { 152 'msvs_configuration_attributes': {
153 'OutputDirectory': '<(DEPTH)\\out\\$(ConfigurationName)', 153 'OutputDirectory': '<(DEPTH)\\build\\$(ConfigurationName)',
154 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', 154 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
155 'CharacterSet': '1', 155 'CharacterSet': '1',
156 }, 156 },
157 'msvs_settings': { 157 'msvs_settings': {
158 'VCCLCompilerTool': { 158 'VCCLCompilerTool': {
159 'MinimalRebuild': 'false', 159 'MinimalRebuild': 'false',
160 'BufferSecurityCheck': 'true', 160 'BufferSecurityCheck': 'true',
161 'EnableFunctionLevelLinking': 'true', 161 'EnableFunctionLevelLinking': 'true',
162 'RuntimeTypeInfo': 'false', 162 'RuntimeTypeInfo': 'false',
163 'WarningLevel': '3', 163 'WarningLevel': '3',
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 }, 250 },
251 'target_conditions': [ 251 'target_conditions': [
252 ['_type!="static_library"', { 252 ['_type!="static_library"', {
253 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, 253 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
254 }], 254 }],
255 ], # target_conditions 255 ], # target_conditions
256 }, # target_defaults 256 }, # target_defaults
257 }], # OS=="mac" 257 }], # OS=="mac"
258 ], 258 ],
259 } 259 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698