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

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

Issue 960413003: Apply gn format with 'sources' sorting to src/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-format-sort-2
Patch Set: . Created 5 years, 9 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
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 29 matching lines...) Expand all
40 } 40 }
41 41
42 if (use_aura) { 42 if (use_aura) {
43 sources -= [ "context_factory.h" ] 43 sources -= [ "context_factory.h" ]
44 } 44 }
45 45
46 configs += [ "//content:content_implementation" ] 46 configs += [ "//content:content_implementation" ]
47 47
48 public_deps = [ 48 public_deps = [
49 "//content/public/common:mojo_bindings", 49 "//content/public/common:mojo_bindings",
50
50 # We expose skia headers in the public API. 51 # We expose skia headers in the public API.
51 "//skia", 52 "//skia",
52 "//third_party/mojo/src/mojo/public/cpp/system", 53 "//third_party/mojo/src/mojo/public/cpp/system",
53 ] 54 ]
54 deps = [ 55 deps = [
55 "//content/browser", 56 "//content/browser",
56 "//content/public/common:common_sources", 57 "//content/public/common:common_sources",
57 "//net", 58 "//net",
58 "//ui/accessibility", 59 "//ui/accessibility",
59 "//ui/base", 60 "//ui/base",
60 "//ui/events", 61 "//ui/events",
61 ] 62 ]
62 63
63 allow_circular_includes_from = [ 64 allow_circular_includes_from = [
64 # This target is a pair with content/browser. They always go together and 65 # This target is a pair with content/browser. They always go together and
65 # include headers from each other. 66 # include headers from each other.
66 "//content/browser", 67 "//content/browser",
67 ] 68 ]
68 } 69 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698