OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # IMPORTANT: | 5 # IMPORTANT: |
6 # Please don't directly include this file if you are building via gyp_chromium, | 6 # Please don't directly include this file if you are building via gyp_chromium, |
7 # since gyp_chromium is automatically forcing its inclusion. | 7 # since gyp_chromium is automatically forcing its inclusion. |
8 { | 8 { |
9 # Variables expected to be overriden on the GYP command line (-D) or by | 9 # Variables expected to be overriden on the GYP command line (-D) or by |
10 # ~/.gyp/include.gypi. | 10 # ~/.gyp/include.gypi. |
(...skipping 2371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2382 # goma doesn't support pch yet. | 2382 # goma doesn't support pch yet. |
2383 'chromium_win_pch': 0, | 2383 'chromium_win_pch': 0, |
2384 # goma doesn't support PDB yet, so win_z7=1 or fastbuild=1. | 2384 # goma doesn't support PDB yet, so win_z7=1 or fastbuild=1. |
2385 'conditions': [ | 2385 'conditions': [ |
2386 ['win_z7==0 and fastbuild==0', { | 2386 ['win_z7==0 and fastbuild==0', { |
2387 'fastbuild': 1, | 2387 'fastbuild': 1, |
2388 }], | 2388 }], |
2389 ], | 2389 ], |
2390 }], | 2390 }], |
2391 | 2391 |
2392 ['OS=="win" and clang==1 and asan==0', { | |
2393 # TODO(thakis): Remove this again once building with clang/win and | |
2394 # debug info doesn't make link.exe run for hours. | |
2395 'fastbuild': 1, | |
2396 }], | |
2397 | |
2398 ['host_clang==1', { | 2392 ['host_clang==1', { |
2399 'host_cc': '<(make_clang_dir)/bin/clang', | 2393 'host_cc': '<(make_clang_dir)/bin/clang', |
2400 'host_cxx': '<(make_clang_dir)/bin/clang++', | 2394 'host_cxx': '<(make_clang_dir)/bin/clang++', |
2401 }, { | 2395 }, { |
2402 'host_cc': '<!(which gcc)', | 2396 'host_cc': '<!(which gcc)', |
2403 'host_cxx': '<!(which g++)', | 2397 'host_cxx': '<!(which g++)', |
2404 }], | 2398 }], |
2405 | 2399 |
2406 # The seccomp-bpf sandbox is only supported on five architectures | 2400 # The seccomp-bpf sandbox is only supported on five architectures |
2407 # currently. | 2401 # currently. |
(...skipping 3927 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6335 # settings in target dicts. SYMROOT is a special case, because many other | 6329 # settings in target dicts. SYMROOT is a special case, because many other |
6336 # Xcode variables depend on it, including variables such as | 6330 # Xcode variables depend on it, including variables such as |
6337 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6331 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6338 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6332 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6339 # files to appear (when present) in the UI as actual files and not red | 6333 # files to appear (when present) in the UI as actual files and not red |
6340 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6334 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6341 # and therefore SYMROOT, needs to be set at the project level. | 6335 # and therefore SYMROOT, needs to be set at the project level. |
6342 'SYMROOT': '<(DEPTH)/xcodebuild', | 6336 'SYMROOT': '<(DEPTH)/xcodebuild', |
6343 }, | 6337 }, |
6344 } | 6338 } |
OLD | NEW |