| OLD | NEW |
| 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 1881 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1892 'cflags_cc+': [ | 1892 'cflags_cc+': [ |
| 1893 '-frtti', | 1893 '-frtti', |
| 1894 '-gline-tables-only', | 1894 '-gline-tables-only', |
| 1895 '-fintercept-allocation-functions', | 1895 '-fintercept-allocation-functions', |
| 1896 ], | 1896 ], |
| 1897 'defines': ['TYPE_PROFILING'], | 1897 'defines': ['TYPE_PROFILING'], |
| 1898 'dependencies': [ | 1898 'dependencies': [ |
| 1899 '<(DEPTH)/base/allocator/allocator.gyp:type_profiler', | 1899 '<(DEPTH)/base/allocator/allocator.gyp:type_profiler', |
| 1900 ], | 1900 ], |
| 1901 }], | 1901 }], |
| 1902 ['chrome_multiple_dll', { | |
| 1903 'defines': ['CHROME_MULTIPLE_DLL'], | |
| 1904 }], | |
| 1905 ['OS=="linux" and clang==1 and host_arch=="ia32"', { | 1902 ['OS=="linux" and clang==1 and host_arch=="ia32"', { |
| 1906 # TODO(dmikurube): Remove -Wno-sentinel when Clang/LLVM is fixed. | 1903 # TODO(dmikurube): Remove -Wno-sentinel when Clang/LLVM is fixed. |
| 1907 # See http://crbug.com/162818. | 1904 # See http://crbug.com/162818. |
| 1908 'cflags+': ['-Wno-sentinel'], | 1905 'cflags+': ['-Wno-sentinel'], |
| 1909 }], | 1906 }], |
| 1910 ['OS=="win" and "<(msbuild_toolset)"!=""', { | 1907 ['OS=="win" and "<(msbuild_toolset)"!=""', { |
| 1911 'msbuild_toolset': '<(msbuild_toolset)', | 1908 'msbuild_toolset': '<(msbuild_toolset)', |
| 1912 }], | 1909 }], |
| 1913 ['branding=="Chrome"', { | 1910 ['branding=="Chrome"', { |
| 1914 'defines': ['GOOGLE_CHROME_BUILD'], | 1911 'defines': ['GOOGLE_CHROME_BUILD'], |
| (...skipping 2794 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4709 # settings in target dicts. SYMROOT is a special case, because many other | 4706 # settings in target dicts. SYMROOT is a special case, because many other |
| 4710 # Xcode variables depend on it, including variables such as | 4707 # Xcode variables depend on it, including variables such as |
| 4711 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4708 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4712 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4709 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4713 # files to appear (when present) in the UI as actual files and not red | 4710 # files to appear (when present) in the UI as actual files and not red |
| 4714 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4711 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4715 # and therefore SYMROOT, needs to be set at the project level. | 4712 # and therefore SYMROOT, needs to be set at the project level. |
| 4716 'SYMROOT': '<(DEPTH)/xcodebuild', | 4713 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4717 }, | 4714 }, |
| 4718 } | 4715 } |
| OLD | NEW |