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

Side by Side Diff: build/common.gypi

Issue 1403893007: Adding third_party/openh264/src, build files and unittests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Misc Created 5 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
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 1241 matching lines...) Expand 10 before | Expand all | Expand 10 after
1252 'video_hole%': '<(video_hole)', 1252 'video_hole%': '<(video_hole)',
1253 'v8_use_external_startup_data%': '<(v8_use_external_startup_data)', 1253 'v8_use_external_startup_data%': '<(v8_use_external_startup_data)',
1254 'cfi_vptr%': '<(cfi_vptr)', 1254 'cfi_vptr%': '<(cfi_vptr)',
1255 'cfi_diag%': '<(cfi_diag)', 1255 'cfi_diag%': '<(cfi_diag)',
1256 'cfi_blacklist%': '<(cfi_blacklist)', 1256 'cfi_blacklist%': '<(cfi_blacklist)',
1257 'mac_views_browser%': '<(mac_views_browser)', 1257 'mac_views_browser%': '<(mac_views_browser)',
1258 'android_app_version_name%': '<(android_app_version_name)', 1258 'android_app_version_name%': '<(android_app_version_name)',
1259 'android_app_version_code%': '<(android_app_version_code)', 1259 'android_app_version_code%': '<(android_app_version_code)',
1260 'enable_webvr%': '<(enable_webvr)', 1260 'enable_webvr%': '<(enable_webvr)',
1261 1261
1262 # Enable this to build OpenH264.
1263 # CHECK THE OPENH264 LICENSE BEFORE BUILDING.
1264 'build_openh264%': 1,
1265
1262 # Turns on compiler optimizations in V8 in Debug build. 1266 # Turns on compiler optimizations in V8 in Debug build.
1263 'v8_optimized_debug%': 1, 1267 'v8_optimized_debug%': 1,
1264 1268
1265 # Use system protobuf instead of bundled one. 1269 # Use system protobuf instead of bundled one.
1266 'use_system_protobuf%': 0, 1270 'use_system_protobuf%': 0,
1267 1271
1268 # Use system yasm instead of bundled one. 1272 # Use system yasm instead of bundled one.
1269 'use_system_yasm%': 0, 1273 'use_system_yasm%': 0,
1270 1274
1271 # Use system ICU instead of bundled one. 1275 # Use system ICU instead of bundled one.
(...skipping 5059 matching lines...) Expand 10 before | Expand all | Expand 10 after
6331 # settings in target dicts. SYMROOT is a special case, because many other 6335 # settings in target dicts. SYMROOT is a special case, because many other
6332 # Xcode variables depend on it, including variables such as 6336 # Xcode variables depend on it, including variables such as
6333 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6337 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6334 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6338 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6335 # files to appear (when present) in the UI as actual files and not red 6339 # files to appear (when present) in the UI as actual files and not red
6336 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6340 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6337 # and therefore SYMROOT, needs to be set at the project level. 6341 # and therefore SYMROOT, needs to be set at the project level.
6338 'SYMROOT': '<(DEPTH)/xcodebuild', 6342 'SYMROOT': '<(DEPTH)/xcodebuild',
6339 }, 6343 },
6340 } 6344 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698