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

Side by Side Diff: build/common.gypi

Issue 705623002: Initialize V8 in PDFium from external files (in-renderer process only). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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
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 987 matching lines...) Expand 10 before | Expand all | Expand 10 after
998 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x 86', 998 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x 86',
999 }], 999 }],
1000 1000
1001 # Turn on JNI generation optimizations on non-WebView builds. 1001 # Turn on JNI generation optimizations on non-WebView builds.
1002 ['OS=="android" and android_webview_build==0', { 1002 ['OS=="android" and android_webview_build==0', {
1003 'optimize_jni_generation%': 1, 1003 'optimize_jni_generation%': 1,
1004 }, { 1004 }, {
1005 'optimize_jni_generation%': 0, 1005 'optimize_jni_generation%': 0,
1006 }], 1006 }],
1007 1007
1008 # TODO(baixo): Enable v8_use_external_startup_data 1008 # TODO(baixo): Enable v8_use_external_startup_data for Windows and Mac -
1009 # http://crbug.com/421063 1009 # http://crbug.com/421063
1010 ['android_webview_build==0 and android_webview_telemetry_build==0 and ch romecast==0', { 1010 ['android_webview_build==0 and android_webview_telemetry_build==0 and ch romecast==0 and (OS=="android" or OS=="linux")', {
1011 'v8_use_external_startup_data': 0, 1011 'v8_use_external_startup_data': 1,
1012 }, { 1012 }, {
1013 'v8_use_external_startup_data': 0, 1013 'v8_use_external_startup_data': 0,
1014 }], 1014 }],
1015 ], 1015 ],
1016 1016
1017 # Set this to 1 to enable use of concatenated impulse responses 1017 # Set this to 1 to enable use of concatenated impulse responses
1018 # for the HRTF panner in WebAudio. 1018 # for the HRTF panner in WebAudio.
1019 'use_concatenated_impulse_responses': 1, 1019 'use_concatenated_impulse_responses': 1,
1020 1020
1021 # You can set the variable 'use_official_google_api_keys' to 1 1021 # You can set the variable 'use_official_google_api_keys' to 1
(...skipping 4859 matching lines...) Expand 10 before | Expand all | Expand 10 after
5881 # settings in target dicts. SYMROOT is a special case, because many other 5881 # settings in target dicts. SYMROOT is a special case, because many other
5882 # Xcode variables depend on it, including variables such as 5882 # Xcode variables depend on it, including variables such as
5883 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5883 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5884 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5884 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5885 # files to appear (when present) in the UI as actual files and not red 5885 # files to appear (when present) in the UI as actual files and not red
5886 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5886 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5887 # and therefore SYMROOT, needs to be set at the project level. 5887 # and therefore SYMROOT, needs to be set at the project level.
5888 'SYMROOT': '<(DEPTH)/xcodebuild', 5888 'SYMROOT': '<(DEPTH)/xcodebuild',
5889 }, 5889 },
5890 } 5890 }
OLDNEW
« no previous file with comments | « no previous file | components/pdf/renderer/ppb_pdf_impl.cc » ('j') | components/pdf/renderer/ppb_pdf_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698