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

Side by Side Diff: build/common.gypi

Issue 826083004: Enable loading V8's initial snapshot from external files on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v8_ext_win_1
Patch Set: Don't include v8 on iOS Created 5 years, 11 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 | chrome/installer/mini_installer/chrome.release » ('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 971 matching lines...) Expand 10 before | Expand all | Expand 10 after
982 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x 86', 982 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x 86',
983 }], 983 }],
984 984
985 # Turn on JNI generation optimizations on non-WebView builds. 985 # Turn on JNI generation optimizations on non-WebView builds.
986 ['OS=="android" and android_webview_build==0', { 986 ['OS=="android" and android_webview_build==0', {
987 'optimize_jni_generation%': 1, 987 'optimize_jni_generation%': 1,
988 }, { 988 }, {
989 'optimize_jni_generation%': 0, 989 'optimize_jni_generation%': 0,
990 }], 990 }],
991 991
992 # TODO(baixo): Enable v8_use_external_startup_data 992 # TODO(rmcilroy): Enable v8_use_external_startup_data on ChromeOS
993 # http://crbug.com/421063 993 # http://crbug.com/421063
994 ['android_webview_build==0 and chromecast==0 and chromeos==0 and (OS=="a ndroid" or OS=="linux" or OS=="mac")', { 994 ['android_webview_build==0 and chromecast==0 and chromeos==0 and OS!="io s"', {
995 'v8_use_external_startup_data%': 1, 995 'v8_use_external_startup_data%': 1,
996 }, { 996 }, {
997 'v8_use_external_startup_data%': 0, 997 'v8_use_external_startup_data%': 0,
998 }], 998 }],
999 ], 999 ],
1000 1000
1001 # Set this to 1 to enable use of concatenated impulse responses 1001 # Set this to 1 to enable use of concatenated impulse responses
1002 # for the HRTF panner in WebAudio. 1002 # for the HRTF panner in WebAudio.
1003 'use_concatenated_impulse_responses': 1, 1003 'use_concatenated_impulse_responses': 1,
1004 1004
(...skipping 4833 matching lines...) Expand 10 before | Expand all | Expand 10 after
5838 # settings in target dicts. SYMROOT is a special case, because many other 5838 # settings in target dicts. SYMROOT is a special case, because many other
5839 # Xcode variables depend on it, including variables such as 5839 # Xcode variables depend on it, including variables such as
5840 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5840 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5841 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5841 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5842 # files to appear (when present) in the UI as actual files and not red 5842 # files to appear (when present) in the UI as actual files and not red
5843 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5843 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5844 # and therefore SYMROOT, needs to be set at the project level. 5844 # and therefore SYMROOT, needs to be set at the project level.
5845 'SYMROOT': '<(DEPTH)/xcodebuild', 5845 'SYMROOT': '<(DEPTH)/xcodebuild',
5846 }, 5846 },
5847 } 5847 }
OLDNEW
« no previous file with comments | « no previous file | chrome/installer/mini_installer/chrome.release » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698