| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |