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

Side by Side Diff: build/common.gypi

Issue 335693004: Hook up content/browser compile in GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « BUILD.gn ('k') | content/BUILD.gn » ('j') | 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 2343 matching lines...) Expand 10 before | Expand all | Expand 10 after
2354 'host_os%': '<(host_os)', # See comment above chromium_code. 2354 'host_os%': '<(host_os)', # See comment above chromium_code.
2355 }], 2355 }],
2356 ], 2356 ],
2357 }, 2357 },
2358 'defines': [ 2358 'defines': [
2359 # Don't use deprecated V8 APIs anywhere. 2359 # Don't use deprecated V8 APIs anywhere.
2360 'V8_DEPRECATION_WARNINGS', 2360 'V8_DEPRECATION_WARNINGS',
2361 # Temporary suppression until Blink code can be removed. 2361 # Temporary suppression until Blink code can be removed.
2362 'BLINK_SCALE_FILTERS_AT_RECORD_TIME', 2362 'BLINK_SCALE_FILTERS_AT_RECORD_TIME',
2363 ], 2363 ],
2364 'include_dirs': [
2365 '<(SHARED_INTERMEDIATE_DIR)',
2366 ],
2364 'conditions': [ 2367 'conditions': [
2365 ['(OS=="mac" or OS=="ios") and asan==1', { 2368 ['(OS=="mac" or OS=="ios") and asan==1', {
2366 'dependencies': [ 2369 'dependencies': [
2367 '<(DEPTH)/build/mac/asan.gyp:asan_dynamic_runtime', 2370 '<(DEPTH)/build/mac/asan.gyp:asan_dynamic_runtime',
2368 ], 2371 ],
2369 }], 2372 }],
2370 ['OS=="linux" and use_allocator!="none" and clang_type_profiler==1', { 2373 ['OS=="linux" and use_allocator!="none" and clang_type_profiler==1', {
2371 'cflags_cc!': ['-fno-rtti'], 2374 'cflags_cc!': ['-fno-rtti'],
2372 'cflags_cc+': [ 2375 'cflags_cc+': [
2373 '-frtti', 2376 '-frtti',
(...skipping 3086 matching lines...) Expand 10 before | Expand all | Expand 10 after
5460 # settings in target dicts. SYMROOT is a special case, because many other 5463 # settings in target dicts. SYMROOT is a special case, because many other
5461 # Xcode variables depend on it, including variables such as 5464 # Xcode variables depend on it, including variables such as
5462 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5465 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5463 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5466 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5464 # files to appear (when present) in the UI as actual files and not red 5467 # files to appear (when present) in the UI as actual files and not red
5465 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5468 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5466 # and therefore SYMROOT, needs to be set at the project level. 5469 # and therefore SYMROOT, needs to be set at the project level.
5467 'SYMROOT': '<(DEPTH)/xcodebuild', 5470 'SYMROOT': '<(DEPTH)/xcodebuild',
5468 }, 5471 },
5469 } 5472 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | content/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698