Re-subimission of https://codereview.chromium.org/1041213003/
[chromium-blink-merge.git] / content / public / browser / BUILD.gn
bloba0c7f91d6f806c43d50030f9a9a9335c4f906370
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
3 # found in the LICENSE file.
5 import("//content/browser/browser.gni")
6 import("//build/config/ui.gni")
8 # See //content/BUILD.gn for how this works.
9 group("browser") {
10   if (is_component_build) {
11     public_deps = [
12       "//content",
13     ]
14   } else {
15     public_deps = [
16       ":browser_sources",
17     ]
18   }
21 source_set("browser_sources") {
22   visibility = [ "//content/*" ]
24   if (is_ios) {
25     # iOS doesn't get the normal file list and only takes these whitelisted
26     # files.
27     sources = [
28       "browser_main_parts.cc",
29       "content_browser_client.cc",
30       "favicon_status.cc",
31       "navigation_details.cc",
32       "notification_registrar.cc",
33       "page_navigator.cc",
34       "web_ui_controller.cc",
35     ]
36   } else {
37     sources = rebase_path(content_browser_gypi_values.public_browser_sources,
38                           ".",
39                           "//content")
40   }
42   if (use_aura) {
43     sources -= [ "context_factory.h" ]
44   }
46   configs += [ "//content:content_implementation" ]
48   public_deps = [
49     "//content/public/common:mojo_bindings",
51     # We expose skia headers in the public API.
52     "//skia",
53     "//third_party/mojo/src/mojo/public/cpp/system",
54   ]
55   deps = [
56     "//content/browser",
57     "//content/public/common:common_sources",
58     "//net",
59     "//ui/accessibility",
60     "//ui/base",
61     "//ui/events",
62   ]
64   allow_circular_includes_from = [
65     # This target is a pair with content/browser. They always go together and
66     # include headers from each other.
67     "//content/browser",
68   ]