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

Side by Side Diff: build/common.gypi

Issue 24246009: Begin renaming the WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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 | « 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 1900 matching lines...) Expand 10 before | Expand all | Expand 10 after
1911 # See http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/Optimize-Options.htm l 1911 # See http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/Optimize-Options.htm l
1912 'mac_release_optimization%': '3', # Use -O3 unless overridden 1912 'mac_release_optimization%': '3', # Use -O3 unless overridden
1913 'mac_debug_optimization%': '0', # Use -O0 unless overridden 1913 'mac_debug_optimization%': '0', # Use -O0 unless overridden
1914 }], 1914 }],
1915 ], 1915 ],
1916 }, 1916 },
1917 'defines': [ 1917 'defines': [
1918 # Set this to use the new DX11 version of ANGLE. 1918 # Set this to use the new DX11 version of ANGLE.
1919 # TODO(apatrick): Remove this when the transition is complete. 1919 # TODO(apatrick): Remove this when the transition is complete.
1920 'ANGLE_DX11', 1920 'ANGLE_DX11',
1921 # We're in the process of renaming the WebKit namespace to blink.
1922 # TODO(abarth): Remove this define when we've updated the code.
jamesr 2013/09/19 21:50:51 in addition to the TODO() please add a link to the
1923 'WebKit=blink',
1921 'WTF_VECTOR_INITIAL_SIZE=4', 1924 'WTF_VECTOR_INITIAL_SIZE=4',
1922 ], 1925 ],
1923 'conditions': [ 1926 'conditions': [
1924 ['(OS=="mac" or OS=="ios") and asan==1', { 1927 ['(OS=="mac" or OS=="ios") and asan==1', {
1925 'dependencies': [ 1928 'dependencies': [
1926 '<(DEPTH)/build/mac/asan.gyp:asan_dynamic_runtime', 1929 '<(DEPTH)/build/mac/asan.gyp:asan_dynamic_runtime',
1927 ], 1930 ],
1928 }], 1931 }],
1929 ['OS=="linux" and linux_use_tcmalloc==1 and clang_type_profiler==1', { 1932 ['OS=="linux" and linux_use_tcmalloc==1 and clang_type_profiler==1', {
1930 'cflags_cc!': ['-fno-rtti'], 1933 'cflags_cc!': ['-fno-rtti'],
(...skipping 2810 matching lines...) Expand 10 before | Expand all | Expand 10 after
4741 # settings in target dicts. SYMROOT is a special case, because many other 4744 # settings in target dicts. SYMROOT is a special case, because many other
4742 # Xcode variables depend on it, including variables such as 4745 # Xcode variables depend on it, including variables such as
4743 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4746 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4744 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4747 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4745 # files to appear (when present) in the UI as actual files and not red 4748 # files to appear (when present) in the UI as actual files and not red
4746 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4749 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4747 # and therefore SYMROOT, needs to be set at the project level. 4750 # and therefore SYMROOT, needs to be set at the project level.
4748 'SYMROOT': '<(DEPTH)/xcodebuild', 4751 'SYMROOT': '<(DEPTH)/xcodebuild',
4749 }, 4752 },
4750 } 4753 }
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