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 # ============================================================================= | 5 # ============================================================================= |
6 # PLATFORM SELECTION | 6 # PLATFORM SELECTION |
7 # ============================================================================= | 7 # ============================================================================= |
8 # | 8 # |
9 # There are two main things to set: "os" and "cpu". The "toolchain" is the name | 9 # There are two main things to set: "os" and "cpu". The "toolchain" is the name |
10 # of the GN thing that encodes combinations of these things. | 10 # of the GN thing that encodes combinations of these things. |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
189 is_fuchsia = false | 189 is_fuchsia = false |
190 is_fuchsia_host = false | 190 is_fuchsia_host = false |
191 is_ios = false | 191 is_ios = false |
192 is_linux = true | 192 is_linux = true |
193 is_mac = false | 193 is_mac = false |
194 is_nacl = false | 194 is_nacl = false |
195 is_posix = true | 195 is_posix = true |
196 is_win = false | 196 is_win = false |
197 } | 197 } |
198 | 198 |
199 is_flutter = false | |
zra
2017/08/04 22:40:41
This is probably not the right place for this sinc
| |
200 | |
199 # ============================================================================= | 201 # ============================================================================= |
200 # BUILD OPTIONS | 202 # BUILD OPTIONS |
201 # ============================================================================= | 203 # ============================================================================= |
202 | 204 |
203 # These Sanitizers all imply using the Clang compiler. On Windows they either | 205 # These Sanitizers all imply using the Clang compiler. On Windows they either |
204 # don't work or work differently. | 206 # don't work or work differently. |
205 if (!is_clang && (is_asan || is_lsan || is_tsan || is_msan)) { | 207 if (!is_clang && (is_asan || is_lsan || is_tsan || is_msan)) { |
206 is_clang = true | 208 is_clang = true |
207 } | 209 } |
208 | 210 |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
467 sources = invoker.sources | 469 sources = invoker.sources |
468 } | 470 } |
469 if (defined(invoker.testonly)) { | 471 if (defined(invoker.testonly)) { |
470 testonly = invoker.testonly | 472 testonly = invoker.testonly |
471 } | 473 } |
472 if (defined(invoker.visibility)) { | 474 if (defined(invoker.visibility)) { |
473 visibility = invoker.visibility | 475 visibility = invoker.visibility |
474 } | 476 } |
475 } | 477 } |
476 } | 478 } |
OLD | NEW |