OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/chrome_build.gni") | 6 import("//build/config/chrome_build.gni") |
7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
8 import("//build/config/nacl/config.gni") | 8 import("//build/config/nacl/config.gni") |
9 import("//build/toolchain/cc_wrapper.gni") | 9 import("//build/toolchain/cc_wrapper.gni") |
10 import("//build/toolchain/toolchain.gni") | 10 import("//build/toolchain/toolchain.gni") |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 ":compiler_cpu_abi", | 159 ":compiler_cpu_abi", |
160 ":compiler_codegen", | 160 ":compiler_codegen", |
161 ] | 161 ] |
162 | 162 |
163 # In general, Windows is totally different, but all the other builds share | 163 # In general, Windows is totally different, but all the other builds share |
164 # some common GCC configuration. | 164 # some common GCC configuration. |
165 if (!is_win) { | 165 if (!is_win) { |
166 # Common GCC compiler flags setup. | 166 # Common GCC compiler flags setup. |
167 # -------------------------------- | 167 # -------------------------------- |
168 cflags += [ "-fno-strict-aliasing" ] # See http://crbug.com/32204 | 168 cflags += [ "-fno-strict-aliasing" ] # See http://crbug.com/32204 |
169 | |
170 # Eliminate build metadata (__DATE__ and __TIME_) for deterministic build. | |
171 # See https://crbug.com/314403 | |
172 cflags += [ | |
173 "-Wno-builtin-macro-redefined", | |
174 "-D__DATE__=", | |
175 "-D__TIME__=", | |
176 ] | |
177 | |
178 cflags_cc += [ | 169 cflags_cc += [ |
179 # If this is removed then remove the corresponding /Zc:threadSafeInit- for | 170 # If this is removed then remove the corresponding /Zc:threadSafeInit- for |
180 # Windows. | 171 # Windows. |
181 "-fno-threadsafe-statics", | 172 "-fno-threadsafe-statics", |
182 | 173 |
183 # Not exporting C++ inline functions can generally be applied anywhere | 174 # Not exporting C++ inline functions can generally be applied anywhere |
184 # so we do so here. Normal function visibility is controlled by | 175 # so we do so here. Normal function visibility is controlled by |
185 # //build/config/gcc:symbol_visibility_hidden. | 176 # //build/config/gcc:symbol_visibility_hidden. |
186 "-fvisibility-inlines-hidden", | 177 "-fvisibility-inlines-hidden", |
187 ] | 178 ] |
(...skipping 1402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1590 | 1581 |
1591 if (is_ios || is_mac) { | 1582 if (is_ios || is_mac) { |
1592 # On Mac and iOS, this enables support for ARC (automatic ref-counting). | 1583 # On Mac and iOS, this enables support for ARC (automatic ref-counting). |
1593 # See http://clang.llvm.org/docs/AutomaticReferenceCounting.html. | 1584 # See http://clang.llvm.org/docs/AutomaticReferenceCounting.html. |
1594 config("enable_arc") { | 1585 config("enable_arc") { |
1595 common_flags = [ "-fobjc-arc" ] | 1586 common_flags = [ "-fobjc-arc" ] |
1596 cflags_objc = common_flags | 1587 cflags_objc = common_flags |
1597 cflags_objcc = common_flags | 1588 cflags_objcc = common_flags |
1598 } | 1589 } |
1599 } | 1590 } |
OLD | NEW |