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

Side by Side Diff: build/common.gypi

Issue 1212163011: Componentize chrome/browser/rlz (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 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
« no previous file with comments | « no previous file | build/config/features.gni » ('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 1476 matching lines...) Expand 10 before | Expand all | Expand 10 after
1487 'build_device_config_path': '<(PRODUCT_DIR)/build_devices.cfg', 1487 'build_device_config_path': '<(PRODUCT_DIR)/build_devices.cfg',
1488 1488
1489 'sas_dll_exists': '<!pymod_do_main(dir_exists "<(sas_dll_path)")', 1489 'sas_dll_exists': '<!pymod_do_main(dir_exists "<(sas_dll_path)")',
1490 'wix_exists': '<!pymod_do_main(dir_exists "<(wix_path)")', 1490 'wix_exists': '<!pymod_do_main(dir_exists "<(wix_path)")',
1491 1491
1492 'windows_sdk_path%': 'C:/Program Files (x86)/Windows Kits/8.1', 1492 'windows_sdk_path%': 'C:/Program Files (x86)/Windows Kits/8.1',
1493 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files', 1493 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files',
1494 1494
1495 # Whether we are using the rlz library or not. Platforms like Android send 1495 # Whether we are using the rlz library or not. Platforms like Android send
1496 # rlz codes for searches but do not use the library. 1496 # rlz codes for searches but do not use the library.
1497 'enable_rlz_support%': 0,
1497 'enable_rlz%': 0, 1498 'enable_rlz%': 0,
1498 1499
1499 # Turns on the i18n support in V8. 1500 # Turns on the i18n support in V8.
1500 'v8_enable_i18n_support': 1, 1501 'v8_enable_i18n_support': 1,
1501 1502
1502 # Compile d8 for the host toolset. 1503 # Compile d8 for the host toolset.
1503 'v8_toolset_for_d8': 'host', 1504 'v8_toolset_for_d8': 'host',
1504 1505
1505 # Use brlapi from brltty for braille display support. 1506 # Use brlapi from brltty for braille display support.
1506 'use_brlapi%': 0, 1507 'use_brlapi%': 0,
(...skipping 804 matching lines...) Expand 10 before | Expand all | Expand 10 after
2311 # compiler bug, so we use /Ob1 instead. 2312 # compiler bug, so we use /Ob1 instead.
2312 'win_release_InlineFunctionExpansion': '1', 2313 'win_release_InlineFunctionExpansion': '1',
2313 'win_release_OmitFramePointers': '0', 2314 'win_release_OmitFramePointers': '0',
2314 # Ditto for debug, to support bumping win_debug_Optimization. 2315 # Ditto for debug, to support bumping win_debug_Optimization.
2315 'win_debug_InlineFunctionExpansion': 0, 2316 'win_debug_InlineFunctionExpansion': 0,
2316 'win_debug_OmitFramePointers': 0, 2317 'win_debug_OmitFramePointers': 0,
2317 # Keep the code under #ifndef NVALGRIND. 2318 # Keep the code under #ifndef NVALGRIND.
2318 'release_valgrind_build': 1, 2319 'release_valgrind_build': 1,
2319 }], 2320 }],
2320 2321
2321 # Enable RLZ on Win, Mac, iOS and ChromeOS. 2322 # RLZ library is used on Win, Mac, iOS and ChromeOS.
2322 ['branding=="Chrome" and (OS=="win" or OS=="mac" or OS=="ios" or chromeos= =1)', { 2323 ['OS=="win" or OS=="mac" or OS=="ios" or chromeos==1', {
2323 'enable_rlz%': 1, 2324 'enable_rlz_support%': 1,
2325 'conditions': [
2326 # RLZ is enabled for "Chrome" builds.
2327 ['branding=="Chrome"', {
2328 'enable_rlz%': 1,
2329 }],
2330 ],
2324 }], 2331 }],
2325 2332
2326 # Set default compiler flags depending on ARM version. 2333 # Set default compiler flags depending on ARM version.
2327 ['arm_version==6', { 2334 ['arm_version==6', {
2328 'arm_arch%': 'armv6', 2335 'arm_arch%': 'armv6',
2329 'arm_tune%': '', 2336 'arm_tune%': '',
2330 'arm_fpu%': 'vfp', 2337 'arm_fpu%': 'vfp',
2331 'arm_float_abi%': 'softfp', 2338 'arm_float_abi%': 'softfp',
2332 'arm_thumb%': 0, 2339 'arm_thumb%': 0,
2333 }], 2340 }],
(...skipping 3869 matching lines...) Expand 10 before | Expand all | Expand 10 after
6203 # settings in target dicts. SYMROOT is a special case, because many other 6210 # settings in target dicts. SYMROOT is a special case, because many other
6204 # Xcode variables depend on it, including variables such as 6211 # Xcode variables depend on it, including variables such as
6205 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6212 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6206 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6213 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6207 # files to appear (when present) in the UI as actual files and not red 6214 # files to appear (when present) in the UI as actual files and not red
6208 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6215 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6209 # and therefore SYMROOT, needs to be set at the project level. 6216 # and therefore SYMROOT, needs to be set at the project level.
6210 'SYMROOT': '<(DEPTH)/xcodebuild', 6217 'SYMROOT': '<(DEPTH)/xcodebuild',
6211 }, 6218 },
6212 } 6219 }
OLDNEW
« no previous file with comments | « no previous file | build/config/features.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698