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

Side by Side Diff: build/common.gypi

Issue 20210002: [Android] Sets up a coverage system for java using EMMA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Gets code coverage for non-apk java working Created 7 years, 4 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
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 874 matching lines...) Expand 10 before | Expand all | Expand 10 after
885 # The default value for mac_strip in target_defaults. This cannot be 885 # The default value for mac_strip in target_defaults. This cannot be
886 # set there, per the comment about variable% in a target_defaults. 886 # set there, per the comment about variable% in a target_defaults.
887 'mac_strip_release%': 1, 887 'mac_strip_release%': 1,
888 888
889 # Set to 1 to enable code coverage. In addition to build changes 889 # Set to 1 to enable code coverage. In addition to build changes
890 # (e.g. extra CFLAGS), also creates a new target in the src/chrome 890 # (e.g. extra CFLAGS), also creates a new target in the src/chrome
891 # project file called "coverage". 891 # project file called "coverage".
892 # Currently ignored on Windows. 892 # Currently ignored on Windows.
893 'coverage%': 0, 893 'coverage%': 0,
894 894
895 # Set to '<(coverage)' by individual targets which should be instrumented
896 # when coverage is enabled.
897 'emma_instrument%': 0,
898
895 # Set to 1 to force Visual C++ to use legacy debug information format /Z7. 899 # Set to 1 to force Visual C++ to use legacy debug information format /Z7.
896 # This is useful for parallel compilation tools which can't support /Zi. 900 # This is useful for parallel compilation tools which can't support /Zi.
897 # Only used on Windows. 901 # Only used on Windows.
898 'win_z7%' : 0, 902 'win_z7%' : 0,
899 903
900 # Although base/allocator lets you select a heap library via an 904 # Although base/allocator lets you select a heap library via an
901 # environment variable, the libcmt shim it uses sometimes gets in 905 # environment variable, the libcmt shim it uses sometimes gets in
902 # the way. To disable it entirely, and switch to normal msvcrt, do e.g. 906 # the way. To disable it entirely, and switch to normal msvcrt, do e.g.
903 # 'win_use_allocator_shim': 0, 907 # 'win_use_allocator_shim': 0,
904 # 'win_release_RuntimeLibrary': 2 908 # 'win_release_RuntimeLibrary': 2
(...skipping 3776 matching lines...) Expand 10 before | Expand all | Expand 10 after
4681 # settings in target dicts. SYMROOT is a special case, because many other 4685 # settings in target dicts. SYMROOT is a special case, because many other
4682 # Xcode variables depend on it, including variables such as 4686 # Xcode variables depend on it, including variables such as
4683 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4687 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4684 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4688 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4685 # files to appear (when present) in the UI as actual files and not red 4689 # files to appear (when present) in the UI as actual files and not red
4686 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4690 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4687 # and therefore SYMROOT, needs to be set at the project level. 4691 # and therefore SYMROOT, needs to be set at the project level.
4688 'SYMROOT': '<(DEPTH)/xcodebuild', 4692 'SYMROOT': '<(DEPTH)/xcodebuild',
4689 }, 4693 },
4690 } 4694 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698