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

Side by Side Diff: build/common.gypi

Issue 406503002: Drop unused v8 config var from chromium config (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« 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 (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 1395 matching lines...) Expand 10 before | Expand all | Expand 10 after
1406 # Whether we are using the rlz library or not. Platforms like Android send 1406 # Whether we are using the rlz library or not. Platforms like Android send
1407 # rlz codes for searches but do not use the library. 1407 # rlz codes for searches but do not use the library.
1408 'enable_rlz%': 0, 1408 'enable_rlz%': 0,
1409 1409
1410 # Turns on the i18n support in V8. 1410 # Turns on the i18n support in V8.
1411 'v8_enable_i18n_support': 1, 1411 'v8_enable_i18n_support': 1,
1412 1412
1413 # Compile d8 for the host toolset. 1413 # Compile d8 for the host toolset.
1414 'v8_toolset_for_d8': 'host', 1414 'v8_toolset_for_d8': 'host',
1415 1415
1416 # Compiles v8 without its platform library.
1417 'v8_use_default_platform': 0,
1418
1419 # Use the chromium skia by default. 1416 # Use the chromium skia by default.
1420 'use_system_skia%': '0', 1417 'use_system_skia%': '0',
1421 1418
1422 # Use brlapi from brltty for braille display support. 1419 # Use brlapi from brltty for braille display support.
1423 'use_brlapi%': 0, 1420 'use_brlapi%': 0,
1424 1421
1425 # Relative path to icu.gyp from this file. 1422 # Relative path to icu.gyp from this file.
1426 'icu_gyp_path': '../third_party/icu/icu.gyp', 1423 'icu_gyp_path': '../third_party/icu/icu.gyp',
1427 1424
1428 # IPC fuzzer is disabled by default. 1425 # IPC fuzzer is disabled by default.
(...skipping 4225 matching lines...) Expand 10 before | Expand all | Expand 10 after
5654 # settings in target dicts. SYMROOT is a special case, because many other 5651 # settings in target dicts. SYMROOT is a special case, because many other
5655 # Xcode variables depend on it, including variables such as 5652 # Xcode variables depend on it, including variables such as
5656 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5653 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5657 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5654 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5658 # files to appear (when present) in the UI as actual files and not red 5655 # files to appear (when present) in the UI as actual files and not red
5659 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5656 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5660 # and therefore SYMROOT, needs to be set at the project level. 5657 # and therefore SYMROOT, needs to be set at the project level.
5661 'SYMROOT': '<(DEPTH)/xcodebuild', 5658 'SYMROOT': '<(DEPTH)/xcodebuild',
5662 }, 5659 },
5663 } 5660 }
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