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/allocator.gni") | 5 import("//build/config/allocator.gni") |
6 import("//build/config/chrome_build.gni") | 6 import("//build/config/chrome_build.gni") |
7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
9 import("//build/config/sanitizers/sanitizers.gni") | 9 import("//build/config/sanitizers/sanitizers.gni") |
10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
11 import("//build_overrides/v8.gni") | 11 import("//build_overrides/v8.gni") |
12 import("//build_overrides/webrtc.gni") | |
Dirk Pranke
2015/10/13 17:28:09
You don't need to add this. The only reason the v8
kjellander_chromium
2015/10/13 21:42:54
OK, removed in PS#2.
| |
12 import("//build/toolchain/goma.gni") | 13 import("//build/toolchain/goma.gni") |
13 | 14 |
14 declare_args() { | 15 declare_args() { |
15 # When set (the default) enables C++ iterator debugging in debug builds. | 16 # When set (the default) enables C++ iterator debugging in debug builds. |
16 # Iterator debugging is always off in release builds (technically, this flag | 17 # Iterator debugging is always off in release builds (technically, this flag |
17 # affects the "debug" config, which is always available but applied by | 18 # affects the "debug" config, which is always available but applied by |
18 # default only in debug builds). | 19 # default only in debug builds). |
19 # | 20 # |
20 # Iterator debugging is generally useful for catching bugs. But it can | 21 # Iterator debugging is generally useful for catching bugs. But it can |
21 # introduce extra locking to check the state of an iterator against the state | 22 # introduce extra locking to check the state of an iterator against the state |
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
449 # This error doesn't happen every time. In VS2013, it seems if the .pch | 450 # This error doesn't happen every time. In VS2013, it seems if the .pch |
450 # file doesn't exist, no error will be generated (probably MS tested this | 451 # file doesn't exist, no error will be generated (probably MS tested this |
451 # case but forgot the other one?). To reproduce this error, do a build, | 452 # case but forgot the other one?). To reproduce this error, do a build, |
452 # then delete the precompile.c.obj file, then build again. | 453 # then delete the precompile.c.obj file, then build again. |
453 cflags_c = [ "/wd4206" ] | 454 cflags_c = [ "/wd4206" ] |
454 } else if (is_mac && !is_official_build && !use_goma) { | 455 } else if (is_mac && !is_official_build && !use_goma) { |
455 precompiled_header = "build/precompile.h" | 456 precompiled_header = "build/precompile.h" |
456 precompiled_source = "//build/precompile.h" | 457 precompiled_source = "//build/precompile.h" |
457 } | 458 } |
458 } | 459 } |
OLD | NEW |