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

Side by Side Diff: build/common.gypi

Issue 11506006: [cros] RLZ tracking can be turned off via a flag file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes 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 1431 matching lines...) Expand 10 before | Expand all | Expand 10 after
1442 'win_release_InlineFunctionExpansion': '1', 1442 'win_release_InlineFunctionExpansion': '1',
1443 'win_release_OmitFramePointers': '0', 1443 'win_release_OmitFramePointers': '0',
1444 # Ditto for debug, to support bumping win_debug_Optimization. 1444 # Ditto for debug, to support bumping win_debug_Optimization.
1445 'win_debug_InlineFunctionExpansion': 0, 1445 'win_debug_InlineFunctionExpansion': 0,
1446 'win_debug_OmitFramePointers': 0, 1446 'win_debug_OmitFramePointers': 0,
1447 # Keep the code under #ifndef NVALGRIND. 1447 # Keep the code under #ifndef NVALGRIND.
1448 'release_valgrind_build': 1, 1448 'release_valgrind_build': 1,
1449 }], 1449 }],
1450 1450
1451 # Enable RLZ on Win, Mac and ChromeOS. 1451 # Enable RLZ on Win, Mac and ChromeOS.
1452 ['branding=="Chrome" and (OS=="win" or OS=="mac" or chromeos==1)', { 1452 ['(OS=="win" or OS=="mac" or chromeos==1)', {
Ivan Korotkov 2012/12/11 10:53:19 For trybots
1453 'enable_rlz%': 1, 1453 'enable_rlz%': 1,
1454 }], 1454 }],
1455 ], 1455 ],
1456 1456
1457 # List of default apps to install in new profiles. The first list contains 1457 # List of default apps to install in new profiles. The first list contains
1458 # the source files as found in svn. The second list, used only for linux, 1458 # the source files as found in svn. The second list, used only for linux,
1459 # contains the destination location for each of the files. When a crx 1459 # contains the destination location for each of the files. When a crx
1460 # is added or removed from the list, the chrome/browser/resources/ 1460 # is added or removed from the list, the chrome/browser/resources/
1461 # default_apps/external_extensions.json file must also be updated. 1461 # default_apps/external_extensions.json file must also be updated.
1462 'default_apps_list': [ 1462 'default_apps_list': [
(...skipping 2458 matching lines...) Expand 10 before | Expand all | Expand 10 after
3921 # settings in target dicts. SYMROOT is a special case, because many other 3921 # settings in target dicts. SYMROOT is a special case, because many other
3922 # Xcode variables depend on it, including variables such as 3922 # Xcode variables depend on it, including variables such as
3923 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 3923 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
3924 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 3924 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
3925 # files to appear (when present) in the UI as actual files and not red 3925 # files to appear (when present) in the UI as actual files and not red
3926 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 3926 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
3927 # and therefore SYMROOT, needs to be set at the project level. 3927 # and therefore SYMROOT, needs to be set at the project level.
3928 'SYMROOT': '<(DEPTH)/xcodebuild', 3928 'SYMROOT': '<(DEPTH)/xcodebuild',
3929 }, 3929 },
3930 } 3930 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698