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

Side by Side Diff: build/common.gypi

Issue 15888011: Android WebView: add empty jarjar ruleset. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address nits Created 7 years, 6 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 | « android_webview/build/jarjar-rules.txt ('k') | build/jni_generator.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 1294 matching lines...) Expand 10 before | Expand all | Expand 10 after
1305 'use_system_sqlite%': 0, # '<(android_webview_build)', 1305 'use_system_sqlite%': 0, # '<(android_webview_build)',
1306 'use_system_expat%': '<(android_webview_build)', 1306 'use_system_expat%': '<(android_webview_build)',
1307 'use_system_icu%': '<(android_webview_build)', 1307 'use_system_icu%': '<(android_webview_build)',
1308 'use_system_stlport%': '<(android_webview_build)', 1308 'use_system_stlport%': '<(android_webview_build)',
1309 1309
1310 'enable_managed_users%': 0, 1310 'enable_managed_users%': 0,
1311 1311
1312 # Copy it out one scope. 1312 # Copy it out one scope.
1313 'android_webview_build%': '<(android_webview_build)', 1313 'android_webview_build%': '<(android_webview_build)',
1314 }], # OS=="android" 1314 }], # OS=="android"
1315 ['android_webview_build==1', {
1316 # When building the WebView in the Android tree, jarjar will remap all
1317 # the class names, so the JNI generator needs to know this.
1318 'jni_generator_jarjar_file': '../android_webview/build/jarjar-rules.txt' ,
1319 }],
1315 ['OS=="mac"', { 1320 ['OS=="mac"', {
1316 # Enable clang on mac by default! 1321 # Enable clang on mac by default!
1317 'clang%': 1, 1322 'clang%': 1,
1318 }], # OS=="mac" 1323 }], # OS=="mac"
1319 ['OS=="mac" or OS=="ios"', { 1324 ['OS=="mac" or OS=="ios"', {
1320 'variables': { 1325 'variables': {
1321 # Mac OS X SDK and deployment target support. The SDK identifies 1326 # Mac OS X SDK and deployment target support. The SDK identifies
1322 # the version of the system headers that will be used, and 1327 # the version of the system headers that will be used, and
1323 # corresponds to the MAC_OS_X_VERSION_MAX_ALLOWED compile-time 1328 # corresponds to the MAC_OS_X_VERSION_MAX_ALLOWED compile-time
1324 # macro. "Maximum allowed" refers to the operating system version 1329 # macro. "Maximum allowed" refers to the operating system version
(...skipping 3194 matching lines...) Expand 10 before | Expand all | Expand 10 after
4519 # settings in target dicts. SYMROOT is a special case, because many other 4524 # settings in target dicts. SYMROOT is a special case, because many other
4520 # Xcode variables depend on it, including variables such as 4525 # Xcode variables depend on it, including variables such as
4521 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4526 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4522 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4527 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4523 # files to appear (when present) in the UI as actual files and not red 4528 # files to appear (when present) in the UI as actual files and not red
4524 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4529 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4525 # and therefore SYMROOT, needs to be set at the project level. 4530 # and therefore SYMROOT, needs to be set at the project level.
4526 'SYMROOT': '<(DEPTH)/xcodebuild', 4531 'SYMROOT': '<(DEPTH)/xcodebuild',
4527 }, 4532 },
4528 } 4533 }
OLDNEW
« no previous file with comments | « android_webview/build/jarjar-rules.txt ('k') | build/jni_generator.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698