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

Side by Side Diff: build/common.gypi

Issue 2068073002: Provide v8 dependency on tracing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: depth Created 4 years, 6 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
« no previous file with comments | « no previous file | 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 1266 matching lines...) Expand 10 before | Expand all | Expand 10 after
1277 'cfi_diag%': '<(cfi_diag)', 1277 'cfi_diag%': '<(cfi_diag)',
1278 'cfi_blacklist%': '<(cfi_blacklist)', 1278 'cfi_blacklist%': '<(cfi_blacklist)',
1279 'mac_views_browser%': '<(mac_views_browser)', 1279 'mac_views_browser%': '<(mac_views_browser)',
1280 'android_app_version_name%': '<(android_app_version_name)', 1280 'android_app_version_name%': '<(android_app_version_name)',
1281 'android_app_version_code%': '<(android_app_version_code)', 1281 'android_app_version_code%': '<(android_app_version_code)',
1282 'use_webview_internal_framework%': '<(use_webview_internal_framework)', 1282 'use_webview_internal_framework%': '<(use_webview_internal_framework)',
1283 'enable_webvr%': '<(enable_webvr)', 1283 'enable_webvr%': '<(enable_webvr)',
1284 1284
1285 # Turns on compiler optimizations in V8 in Debug build. 1285 # Turns on compiler optimizations in V8 in Debug build.
1286 'v8_optimized_debug%': 1, 1286 'v8_optimized_debug%': 1,
1287 'v8_tracing_include_dir': '<(DEPTH)',
Michael Achenbach 2016/06/17 06:41:03 nit: It might be minimally confusing that there's
1287 1288
1288 # Use system protobuf instead of bundled one. 1289 # Use system protobuf instead of bundled one.
1289 'use_system_protobuf%': 0, 1290 'use_system_protobuf%': 0,
1290 1291
1291 # Use system yasm instead of bundled one. 1292 # Use system yasm instead of bundled one.
1292 'use_system_yasm%': 0, 1293 'use_system_yasm%': 0,
1293 1294
1294 # Use system ICU instead of bundled one. 1295 # Use system ICU instead of bundled one.
1295 'use_system_icu%' : 0, 1296 'use_system_icu%' : 0,
1296 1297
(...skipping 5064 matching lines...) Expand 10 before | Expand all | Expand 10 after
6361 # settings in target dicts. SYMROOT is a special case, because many other 6362 # settings in target dicts. SYMROOT is a special case, because many other
6362 # Xcode variables depend on it, including variables such as 6363 # Xcode variables depend on it, including variables such as
6363 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6364 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6364 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6365 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6365 # files to appear (when present) in the UI as actual files and not red 6366 # files to appear (when present) in the UI as actual files and not red
6366 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6367 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6367 # and therefore SYMROOT, needs to be set at the project level. 6368 # and therefore SYMROOT, needs to be set at the project level.
6368 'SYMROOT': '<(DEPTH)/xcodebuild', 6369 'SYMROOT': '<(DEPTH)/xcodebuild',
6369 }, 6370 },
6370 } 6371 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698