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

Side by Side Diff: build/common.gypi

Issue 11308196: [cros] RlzValueStore made protected by a cross-process lock and not persisted over browser lifetime… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comment 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 | Annotate | Revision Log
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 1419 matching lines...) Expand 10 before | Expand all | Expand 10 after
1430 'win_release_InlineFunctionExpansion': '1', 1430 'win_release_InlineFunctionExpansion': '1',
1431 'win_release_OmitFramePointers': '0', 1431 'win_release_OmitFramePointers': '0',
1432 # Ditto for debug, to support bumping win_debug_Optimization. 1432 # Ditto for debug, to support bumping win_debug_Optimization.
1433 'win_debug_InlineFunctionExpansion': 0, 1433 'win_debug_InlineFunctionExpansion': 0,
1434 'win_debug_OmitFramePointers': 0, 1434 'win_debug_OmitFramePointers': 0,
1435 # Keep the code under #ifndef NVALGRIND. 1435 # Keep the code under #ifndef NVALGRIND.
1436 'release_valgrind_build': 1, 1436 'release_valgrind_build': 1,
1437 }], 1437 }],
1438 1438
1439 # Enable RLZ on Win and Mac. 1439 # Enable RLZ on Win and Mac.
1440 ['branding=="Chrome" and (OS=="win" or OS=="mac")', { 1440 ['OS=="win" or OS=="mac"', {
1441 'enable_rlz%': 1, 1441 'enable_rlz%': 1,
1442 }], 1442 }],
1443 ], 1443 ],
1444 1444
1445 # List of default apps to install in new profiles. The first list contains 1445 # List of default apps to install in new profiles. The first list contains
1446 # the source files as found in svn. The second list, used only for linux, 1446 # the source files as found in svn. The second list, used only for linux,
1447 # contains the destination location for each of the files. When a crx 1447 # contains the destination location for each of the files. When a crx
1448 # is added or removed from the list, the chrome/browser/resources/ 1448 # is added or removed from the list, the chrome/browser/resources/
1449 # default_apps/external_extensions.json file must also be updated. 1449 # default_apps/external_extensions.json file must also be updated.
1450 'default_apps_list': [ 1450 'default_apps_list': [
(...skipping 2430 matching lines...) Expand 10 before | Expand all | Expand 10 after
3881 # settings in target dicts. SYMROOT is a special case, because many other 3881 # settings in target dicts. SYMROOT is a special case, because many other
3882 # Xcode variables depend on it, including variables such as 3882 # Xcode variables depend on it, including variables such as
3883 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 3883 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
3884 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 3884 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
3885 # files to appear (when present) in the UI as actual files and not red 3885 # files to appear (when present) in the UI as actual files and not red
3886 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 3886 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
3887 # and therefore SYMROOT, needs to be set at the project level. 3887 # and therefore SYMROOT, needs to be set at the project level.
3888 'SYMROOT': '<(DEPTH)/xcodebuild', 3888 'SYMROOT': '<(DEPTH)/xcodebuild',
3889 }, 3889 },
3890 } 3890 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698