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

Side by Side Diff: build/common.gypi

Issue 11448005: Add Android-specific parameters to search_engines/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing nits Created 8 years 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/browser/search_engines/prepopulated_engines.json » ('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 933 matching lines...) Expand 10 before | Expand all | Expand 10 after
944 # do a developer build. 944 # do a developer build.
945 'android_app_version_name%': 'Developer Build', 945 'android_app_version_name%': 'Developer Build',
946 'android_app_version_code%': 0, 946 'android_app_version_code%': 0,
947 947
948 'sas_dll_exists': '<!(python <(DEPTH)/build/dir_exists.py <(sas_dll_path))', 948 'sas_dll_exists': '<!(python <(DEPTH)/build/dir_exists.py <(sas_dll_path))',
949 'wix_exists': '<!(python <(DEPTH)/build/dir_exists.py <(wix_path))', 949 'wix_exists': '<!(python <(DEPTH)/build/dir_exists.py <(wix_path))',
950 950
951 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files', 951 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files',
952 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files', 952 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files',
953 953
954 # Whether rlz is enabled. 954 # Whether we are using the rlz library or not. Platforms like Android send
955 # rlz codes for searches but do not use the library.
955 'enable_rlz%': 0, 956 'enable_rlz%': 0,
956 957
957 'conditions': [ 958 'conditions': [
958 ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(windows_sdk_defa ult_path))"=="True"', { 959 ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(windows_sdk_defa ult_path))"=="True"', {
959 'windows_sdk_path%': '<(windows_sdk_default_path)', 960 'windows_sdk_path%': '<(windows_sdk_default_path)',
960 }, { 961 }, {
961 'windows_sdk_path%': 'C:/Program Files (x86)/Windows Kits/8.0', 962 'windows_sdk_path%': 'C:/Program Files (x86)/Windows Kits/8.0',
962 }], 963 }],
963 ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(directx_sdk_defa ult_path))"=="True"', { 964 ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(directx_sdk_defa ult_path))"=="True"', {
964 'directx_sdk_path%': '<(directx_sdk_default_path)', 965 'directx_sdk_path%': '<(directx_sdk_default_path)',
(...skipping 2945 matching lines...) Expand 10 before | Expand all | Expand 10 after
3910 # settings in target dicts. SYMROOT is a special case, because many other 3911 # settings in target dicts. SYMROOT is a special case, because many other
3911 # Xcode variables depend on it, including variables such as 3912 # Xcode variables depend on it, including variables such as
3912 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 3913 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
3913 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 3914 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
3914 # files to appear (when present) in the UI as actual files and not red 3915 # files to appear (when present) in the UI as actual files and not red
3915 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 3916 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
3916 # and therefore SYMROOT, needs to be set at the project level. 3917 # and therefore SYMROOT, needs to be set at the project level.
3917 'SYMROOT': '<(DEPTH)/xcodebuild', 3918 'SYMROOT': '<(DEPTH)/xcodebuild',
3918 }, 3919 },
3919 } 3920 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/search_engines/prepopulated_engines.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698