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

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

Issue 2192683003: Revert of Reland: Geolocation: move from content/browser to device/ (patchset #2 id:20001 of https:… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2810
Patch Set: Created 4 years, 4 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 27 matching lines...) Expand all
38 "//services/shell/public/cpp", 38 "//services/shell/public/cpp",
39 39
40 # We expose skia headers in the public API. 40 # We expose skia headers in the public API.
41 "//skia", 41 "//skia",
42 "//third_party/WebKit/public:mojo_bindings", 42 "//third_party/WebKit/public:mojo_bindings",
43 ] 43 ]
44 deps = [ 44 deps = [
45 "//cc", 45 "//cc",
46 "//content/browser", # Must not be public_deps! 46 "//content/browser", # Must not be public_deps!
47 "//content/public/common:common_sources", 47 "//content/public/common:common_sources",
48 "//device/geolocation:device_geolocation",
49 "//device/power_save_blocker", 48 "//device/power_save_blocker",
50 "//gpu", 49 "//gpu",
51 "//media", 50 "//media",
52 "//net", 51 "//net",
53 "//ppapi/c", 52 "//ppapi/c",
54 "//storage/browser", 53 "//storage/browser",
55 "//ui/accessibility", 54 "//ui/accessibility",
56 "//ui/base", 55 "//ui/base",
57 "//ui/events", 56 "//ui/events",
58 "//ui/gl", 57 "//ui/gl",
59 "//ui/surface", 58 "//ui/surface",
60 ] 59 ]
61 60
62 allow_circular_includes_from = [ 61 allow_circular_includes_from = [
63 # This target is a pair with content/browser. They always go together and 62 # This target is a pair with content/browser. They always go together and
64 # include headers from each other. 63 # include headers from each other.
65 "//content/browser", 64 "//content/browser",
66 ] 65 ]
67 66
68 if (is_android) { 67 if (is_android) {
69 deps += [ "//ui/android" ] 68 deps += [ "//ui/android" ]
70 } 69 }
71 70
72 if (use_aura) { 71 if (use_aura) {
73 sources -= [ "context_factory.h" ] 72 sources -= [ "context_factory.h" ]
74 deps += [ "//ui/aura" ] 73 deps += [ "//ui/aura" ]
75 } 74 }
76 } 75 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698