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

Side by Side Diff: build/common.gypi

Issue 1318583002: Remove references to an old gyp variable that's no longer supported. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « no previous file | build/isolate.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1414 matching lines...) Expand 10 before | Expand all | Expand 10 after
1425 1425
1426 # Disable fatal linker warnings, similarly to how we make it possible 1426 # Disable fatal linker warnings, similarly to how we make it possible
1427 # to disable -Werror (e.g. for different toolchain versions). 1427 # to disable -Werror (e.g. for different toolchain versions).
1428 'disable_fatal_linker_warnings%': 0, 1428 'disable_fatal_linker_warnings%': 0,
1429 1429
1430 'release_valgrind_build%': 0, 1430 'release_valgrind_build%': 0,
1431 1431
1432 # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600 1432 # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600
1433 'enable_wexit_time_destructors%': 0, 1433 'enable_wexit_time_destructors%': 0,
1434 1434
1435 # Build libpeerconnection as a static library by default.
1436 'libpeer_target_type%': 'static_library',
1437
1438 # Set to 1 to compile with the OpenGL ES 2.0 conformance tests. 1435 # Set to 1 to compile with the OpenGL ES 2.0 conformance tests.
1439 'internal_gles2_conform_tests%': 0, 1436 'internal_gles2_conform_tests%': 0,
1440 1437
1441 # Set to 1 to compile with the Khronos GL-CTS conformance tests. 1438 # Set to 1 to compile with the Khronos GL-CTS conformance tests.
1442 'internal_khronos_glcts_tests%': 0, 1439 'internal_khronos_glcts_tests%': 0,
1443 1440
1444 # Set to 1 to compile the filter fuzzer. 1441 # Set to 1 to compile the filter fuzzer.
1445 'internal_filter_fuzzer%': 0, 1442 'internal_filter_fuzzer%': 0,
1446 1443
1447 # NOTE: When these end up in the Mac bundle, we need to replace '-' for '_' 1444 # NOTE: When these end up in the Mac bundle, we need to replace '-' for '_'
(...skipping 4873 matching lines...) Expand 10 before | Expand all | Expand 10 after
6321 # settings in target dicts. SYMROOT is a special case, because many other 6318 # settings in target dicts. SYMROOT is a special case, because many other
6322 # Xcode variables depend on it, including variables such as 6319 # Xcode variables depend on it, including variables such as
6323 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6320 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6324 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6321 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6325 # files to appear (when present) in the UI as actual files and not red 6322 # files to appear (when present) in the UI as actual files and not red
6326 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6323 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6327 # and therefore SYMROOT, needs to be set at the project level. 6324 # and therefore SYMROOT, needs to be set at the project level.
6328 'SYMROOT': '<(DEPTH)/xcodebuild', 6325 'SYMROOT': '<(DEPTH)/xcodebuild',
6329 }, 6326 },
6330 } 6327 }
OLDNEW
« no previous file with comments | « no previous file | build/isolate.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698