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

Side by Side Diff: build/common.gypi

Issue 1229933005: Revert "Componentize chrome/browser/rlz" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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,
1498 'enable_rlz%': 0, 1497 'enable_rlz%': 0,
1499 1498
1500 # Turns on the i18n support in V8. 1499 # Turns on the i18n support in V8.
1501 'v8_enable_i18n_support': 1, 1500 'v8_enable_i18n_support': 1,
1502 1501
1503 # Compile d8 for the host toolset. 1502 # Compile d8 for the host toolset.
1504 'v8_toolset_for_d8': 'host', 1503 'v8_toolset_for_d8': 'host',
1505 1504
1506 # Use brlapi from brltty for braille display support. 1505 # Use brlapi from brltty for braille display support.
1507 'use_brlapi%': 0, 1506 'use_brlapi%': 0,
(...skipping 806 matching lines...) Expand 10 before | Expand all | Expand 10 after
2314 # compiler bug, so we use /Ob1 instead. 2313 # compiler bug, so we use /Ob1 instead.
2315 'win_release_InlineFunctionExpansion': '1', 2314 'win_release_InlineFunctionExpansion': '1',
2316 'win_release_OmitFramePointers': '0', 2315 'win_release_OmitFramePointers': '0',
2317 # Ditto for debug, to support bumping win_debug_Optimization. 2316 # Ditto for debug, to support bumping win_debug_Optimization.
2318 'win_debug_InlineFunctionExpansion': 0, 2317 'win_debug_InlineFunctionExpansion': 0,
2319 'win_debug_OmitFramePointers': 0, 2318 'win_debug_OmitFramePointers': 0,
2320 # Keep the code under #ifndef NVALGRIND. 2319 # Keep the code under #ifndef NVALGRIND.
2321 'release_valgrind_build': 1, 2320 'release_valgrind_build': 1,
2322 }], 2321 }],
2323 2322
2324 # RLZ library is used on Win, Mac, iOS and ChromeOS. 2323 # Enable RLZ on Win, Mac, iOS and ChromeOS.
2325 ['OS=="win" or OS=="mac" or OS=="ios" or chromeos==1', { 2324 ['branding=="Chrome" and (OS=="win" or OS=="mac" or OS=="ios" or chromeos= =1)', {
2326 'enable_rlz_support%': 1, 2325 'enable_rlz%': 1,
2327 'conditions': [
2328 # RLZ is enabled for "Chrome" builds.
2329 ['branding=="Chrome"', {
2330 'enable_rlz%': 1,
2331 }],
2332 ],
2333 }], 2326 }],
2334 2327
2335 # Set default compiler flags depending on ARM version. 2328 # Set default compiler flags depending on ARM version.
2336 ['arm_version==6', { 2329 ['arm_version==6', {
2337 'arm_arch%': 'armv6', 2330 'arm_arch%': 'armv6',
2338 'arm_tune%': '', 2331 'arm_tune%': '',
2339 'arm_fpu%': 'vfp', 2332 'arm_fpu%': 'vfp',
2340 'arm_float_abi%': 'softfp', 2333 'arm_float_abi%': 'softfp',
2341 'arm_thumb%': 0, 2334 'arm_thumb%': 0,
2342 }], 2335 }],
(...skipping 3872 matching lines...) Expand 10 before | Expand all | Expand 10 after
6215 # settings in target dicts. SYMROOT is a special case, because many other 6208 # settings in target dicts. SYMROOT is a special case, because many other
6216 # Xcode variables depend on it, including variables such as 6209 # Xcode variables depend on it, including variables such as
6217 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6210 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6218 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6211 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6219 # files to appear (when present) in the UI as actual files and not red 6212 # files to appear (when present) in the UI as actual files and not red
6220 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6213 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6221 # and therefore SYMROOT, needs to be set at the project level. 6214 # and therefore SYMROOT, needs to be set at the project level.
6222 'SYMROOT': '<(DEPTH)/xcodebuild', 6215 'SYMROOT': '<(DEPTH)/xcodebuild',
6223 }, 6216 },
6224 } 6217 }
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