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

Side by Side Diff: content/public/browser/BUILD.gn

Issue 2108643003: [GN] Add //build/config/compiler:wexit_time_destructors everywhere it is in GYP. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « content/BUILD.gn ('k') | content/public/child/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//content/browser/browser.gni") 5 import("//content/browser/browser.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 7
8 # See //content/BUILD.gn for how this works. 8 # See //content/BUILD.gn for how this works.
9 group("browser") { 9 group("browser") {
10 if (is_component_build) { 10 if (is_component_build) {
(...skipping 10 matching lines...) Expand all
21 source_set("browser_sources") { 21 source_set("browser_sources") {
22 # External code should depend on via ":browser" above. 22 # External code should depend on via ":browser" above.
23 visibility = [ "//content/*" ] 23 visibility = [ "//content/*" ]
24 24
25 sources = rebase_path(content_browser_gypi_values.public_browser_sources, 25 sources = rebase_path(content_browser_gypi_values.public_browser_sources,
26 ".", 26 ".",
27 "//content") 27 "//content")
28 28
29 configs += [ 29 configs += [
30 "//build/config:precompiled_headers", 30 "//build/config:precompiled_headers",
31 "//build/config/compiler:wexit_time_destructors",
31 "//content:content_implementation", 32 "//content:content_implementation",
32 ] 33 ]
33 34
34 public_deps = [ 35 public_deps = [
35 "//mojo/public/cpp/bindings", 36 "//mojo/public/cpp/bindings",
36 "//mojo/public/cpp/system", 37 "//mojo/public/cpp/system",
37 "//services/shell/public/cpp", 38 "//services/shell/public/cpp",
38 39
39 # We expose skia headers in the public API. 40 # We expose skia headers in the public API.
40 "//skia", 41 "//skia",
(...skipping 24 matching lines...) Expand all
65 66
66 if (is_android) { 67 if (is_android) {
67 deps += [ "//ui/android" ] 68 deps += [ "//ui/android" ]
68 } 69 }
69 70
70 if (use_aura) { 71 if (use_aura) {
71 sources -= [ "context_factory.h" ] 72 sources -= [ "context_factory.h" ]
72 deps += [ "//ui/aura" ] 73 deps += [ "//ui/aura" ]
73 } 74 }
74 } 75 }
OLDNEW
« no previous file with comments | « content/BUILD.gn ('k') | content/public/child/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698