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

Side by Side Diff: build/common.gypi

Issue 66313008: Adding build rules for fuzzer (internal only) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added ==1 Created 7 years, 1 month 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
« no previous file with comments | « build/all.gyp ('k') | no next file » | 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 1100 matching lines...) Expand 10 before | Expand all | Expand 10 after
1111 1111
1112 # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600 1112 # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600
1113 'enable_wexit_time_destructors%': 0, 1113 'enable_wexit_time_destructors%': 0,
1114 1114
1115 # Set to 1 to compile with the built in pdf viewer. 1115 # Set to 1 to compile with the built in pdf viewer.
1116 'internal_pdf%': 0, 1116 'internal_pdf%': 0,
1117 1117
1118 # Set to 1 to compile with the OpenGL ES 2.0 conformance tests. 1118 # Set to 1 to compile with the OpenGL ES 2.0 conformance tests.
1119 'internal_gles2_conform_tests%': 0, 1119 'internal_gles2_conform_tests%': 0,
1120 1120
1121 # Set to 1 to compile the filter fuzzer.
1122 'internal_filter_fuzzer%': 0,
1123
1121 # NOTE: When these end up in the Mac bundle, we need to replace '-' for '_' 1124 # NOTE: When these end up in the Mac bundle, we need to replace '-' for '_'
1122 # so Cocoa is happy (http://crbug.com/20441). 1125 # so Cocoa is happy (http://crbug.com/20441).
1123 'locales': [ 1126 'locales': [
1124 'am', 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', 1127 'am', 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB',
1125 'en-US', 'es-419', 'es', 'et', 'fa', 'fi', 'fil', 'fr', 'gu', 'he', 1128 'en-US', 'es-419', 'es', 'et', 'fa', 'fi', 'fil', 'fr', 'gu', 'he',
1126 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'kn', 'ko', 'lt', 'lv', 1129 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'kn', 'ko', 'lt', 'lv',
1127 'ml', 'mr', 'ms', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT', 'ro', 'ru', 1130 'ml', 'mr', 'ms', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT', 'ro', 'ru',
1128 'sk', 'sl', 'sr', 'sv', 'sw', 'ta', 'te', 'th', 'tr', 'uk', 1131 'sk', 'sl', 'sr', 'sv', 'sw', 'ta', 'te', 'th', 'tr', 'uk',
1129 'vi', 'zh-CN', 'zh-TW', 1132 'vi', 'zh-CN', 'zh-TW',
1130 ], 1133 ],
(...skipping 3591 matching lines...) Expand 10 before | Expand all | Expand 10 after
4722 # settings in target dicts. SYMROOT is a special case, because many other 4725 # settings in target dicts. SYMROOT is a special case, because many other
4723 # Xcode variables depend on it, including variables such as 4726 # Xcode variables depend on it, including variables such as
4724 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4727 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4725 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4728 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4726 # files to appear (when present) in the UI as actual files and not red 4729 # files to appear (when present) in the UI as actual files and not red
4727 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4730 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4728 # and therefore SYMROOT, needs to be set at the project level. 4731 # and therefore SYMROOT, needs to be set at the project level.
4729 'SYMROOT': '<(DEPTH)/xcodebuild', 4732 'SYMROOT': '<(DEPTH)/xcodebuild',
4730 }, 4733 },
4731 } 4734 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698