OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 # .gyp files should set chromium_code to 1 if they build Chromium-specific | 7 # .gyp files should set chromium_code to 1 if they build Chromium-specific |
8 # code, as opposed to external code. This variable is used to control | 8 # code, as opposed to external code. This variable is used to control |
9 # such things as the set of warnings to enable, and whether warnings are | 9 # such things as the set of warnings to enable, and whether warnings are |
10 # treated as errors. | 10 # treated as errors. |
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 'GenerateStublessProxies': 'true', | 284 'GenerateStublessProxies': 'true', |
285 'TypeLibraryName': '$(InputName).tlb', | 285 'TypeLibraryName': '$(InputName).tlb', |
286 'OutputDirectory': '$(IntDir)', | 286 'OutputDirectory': '$(IntDir)', |
287 'HeaderFileName': '$(InputName).h', | 287 'HeaderFileName': '$(InputName).h', |
288 'DLLDataFileName': 'dlldata.c', | 288 'DLLDataFileName': 'dlldata.c', |
289 'InterfaceIdentifierFileName': '$(InputName)_i.c', | 289 'InterfaceIdentifierFileName': '$(InputName)_i.c', |
290 'ProxyFileName': '$(InputName)_p.c', | 290 'ProxyFileName': '$(InputName)_p.c', |
291 }, | 291 }, |
292 'VCResourceCompilerTool': { | 292 'VCResourceCompilerTool': { |
293 'Culture' : '1033', | 293 'Culture' : '1033', |
294 'AdditionalIncludeDirectories': '<(DEPTH)', | 294 'AdditionalIncludeDirectories': ['<(DEPTH)'], |
295 }, | 295 }, |
296 }, | 296 }, |
297 }, | 297 }, |
298 }], | 298 }], |
299 ['chromium_code==0', { | 299 ['chromium_code==0', { |
300 # This section must follow the other conditon sections above because | 300 # This section must follow the other conditon sections above because |
301 # external_code.gypi expects to be merged into those settings. | 301 # external_code.gypi expects to be merged into those settings. |
302 'includes': [ | 302 'includes': [ |
303 'external_code.gypi', | 303 'external_code.gypi', |
304 ], | 304 ], |
(...skipping 10 matching lines...) Expand all Loading... |
315 # settings in target dicts. SYMROOT is a special case, because many other | 315 # settings in target dicts. SYMROOT is a special case, because many other |
316 # Xcode variables depend on it, including variables such as | 316 # Xcode variables depend on it, including variables such as |
317 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 317 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
318 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 318 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
319 # files to appear (when present) in the UI as actual files and not red | 319 # files to appear (when present) in the UI as actual files and not red |
320 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 320 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
321 # and therefore SYMROOT, needs to be set at the project level. | 321 # and therefore SYMROOT, needs to be set at the project level. |
322 'SYMROOT': '<(DEPTH)/xcodebuild', | 322 'SYMROOT': '<(DEPTH)/xcodebuild', |
323 }, | 323 }, |
324 } | 324 } |
OLD | NEW |