Remove ExtensionPrefs::SetDidExtensionEscalatePermissions.
[chromium-blink-merge.git] / extensions / shell / BUILD.gn
blob3dad93d17c07c4f872946bd4911a207e584662e0
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("//extensions/shell/app_shell.gni")
7 # Technically, this directory should not depend on files from src/chrome, but
8 # that's where the VERSION file is. This  should probably all be moved to
9 # src/build.
10 import("//chrome/version.gni")
11 import("//testing/test.gni")
12 import("//tools/grit/grit_rule.gni")
14 assert(enable_extensions)
16 grit("resources") {
17   source = "app_shell_resources.grd"
18   outputs = [
19     "grit/app_shell_resources.h",
20     "app_shell_resources.pak",
21   ]
24 source_set("app_shell_lib") {
25   # TODO(jamescook): investigate and get rid of test dependencies. This library
26   # is testonly because it depends on testonly libraries, namely
27   # //content/shell:content_shell_lib. See http://crbug.com/438283
28   testonly = true
29   deps = [
30     ":resources",
31     ":version_header",
32     "//base",
33     "//base:prefs",
34     "//components/devtools_discovery",
35     "//components/devtools_http_handler",
36     "//components/guest_view/browser",
37     "//components/guest_view/common",
38     "//components/guest_view/renderer",
39     "//components/pref_registry",
40     "//components/update_client",
41     "//components/user_prefs",
42     "//components/web_cache/renderer",
43     "//content",
44     "//content/shell:content_shell_lib",
45     "//device/core",
46     "//device/hid",
47     "//extensions/common/api",
48     "//extensions/common/api:api_registration",
49     "//extensions/browser",
50     "//extensions/common",
51     "//extensions/renderer",
52     "//extensions/shell/common/api",
53     "//extensions/shell/common/api:api_registration",
54     "//extensions/utility",
55     "//extensions:extensions_resources",
56     "//extensions:shell_and_test_pak",
57     "//mojo/environment:chromium",
58     "//skia",
59     "//third_party/WebKit/public:blink",
60     "//third_party/mojo/src/mojo/edk/system",
61     "//ui/base",
62     "//ui/base/ime",
63     "//v8",
64   ]
66   sources = rebase_path(app_shell_gypi_values.app_shell_lib_sources,
67                         ".",
68                         "//extensions/shell")
70   if (use_aura) {
71     deps += [ "//ui/wm" ]
73     aura_sources = rebase_path(app_shell_gypi_values.app_shell_lib_sources_aura,
74                                ".",
75                                "//extensions/shell")
76     sources += aura_sources
77   }
79   if (is_chromeos) {
80     deps += [
81       "//chromeos",
82       "//ui/chromeos:ui_chromeos",
83       "//ui/display",
84     ]
85     chromeos_sources =
86         rebase_path(app_shell_gypi_values.app_shell_lib_sources_chromeos,
87                     ".",
88                     "//extensions/shell")
89     sources += chromeos_sources
90   }
92   # TODO(GYP): Enable this when //components/nacl GN is done. See
93   # http://crbug.com/430602
94   if (false) {
95     if (enable_nacl) {
96       if (is_linux) {
97         deps += [ "//components/nacl:nacl_helper" ]
98       }
99       deps += [
100         "//components/nacl",
101         "//components/nacl:browser",
102         "//components/nacl:common",
103         "//components/nacl:renderer",
104         "//components/nacl:switches",
105       ]
106       nacl_sources =
107           rebase_path(app_shell_gypi_values.app_shell_lib_sources_nacl,
108                       ".",
109                       "//extensions/shell")
110       sources += nacl_sources
111     }
112   }
114   if (enable_nacl) {
115     sources += [
116       "browser/shell_nacl_browser_delegate.cc",
117       "browser/shell_nacl_browser_delegate.h",
118     ]
120     deps += [
121       "//components/nacl",
122       "//components/nacl:nacl_browser",
123       "//components/nacl:nacl_common",
124       "//components/nacl:nacl_renderer",
125       "//components/nacl:nacl_switches",
126       "//components/nacl/renderer/plugin:nacl_trusted_plugin",
127     ]
129     if (is_linux) {
130       deps += [ "//components/nacl:nacl_helper" ]
131     }
132   }
135 if (!(is_chromeos && !use_ozone)) {
136   executable("app_shell") {
137     # testonly because :app_shell_lib is testonly. See :app_shell_lib comment.
138     testonly = true
139     sources = rebase_path(app_shell_gypi_values.app_shell_sources,
140                           ".",
141                           "//extensions/shell")
142     deps = [
143       ":app_shell_lib",
144       "//extensions:shell_and_test_pak",
145     ]
147     if (is_win) {
148       configs += [ "//build/config/win:windowed" ]
149       configs -= [ "//build/config/win:console" ]
150       deps += [ "//base/allocator" ]
151     }
153     if (is_mac) {
154       # TODO(GYP): Mac bundling
155     }
156   }
159 test("app_shell_unittests") {
160   sources = rebase_path(app_shell_gypi_values.app_shell_unittests_sources,
161                         ".",
162                         "//extensions/shell")
164   deps = [
165     ":app_shell_lib",
166     "//base",
167     "//base/test:test_support",
168     "//content/test:test_support",
169     "//extensions:shell_and_test_pak",
170     "//extensions:test_support",
171     "//testing/gtest",
172   ]
174   if (use_aura) {
175     deps += [ "//ui/aura:test_support" ]
177     aura_sources =
178         rebase_path(app_shell_gypi_values.app_shell_unittests_sources_aura,
179                     ".",
180                     "//extensions/shell")
181     sources += aura_sources
182   }
184   if (is_chromeos) {
185     deps += [ "//chromeos:test_support_without_gmock" ]
187     chromeos_sources =
188         rebase_path(app_shell_gypi_values.app_shell_unittests_sources_chromeos,
189                     ".",
190                     "//extensions/shell")
191     sources += chromeos_sources
192   }
194   # TODO(GYP): Enable this when //components/nacl GN is done.
195   if (false) {
196     if (use_nacl) {
197       nacl_sources =
198           rebase_path(app_shell_gypi_values.app_shell_unittests_sources_nacl,
199                       ".",
200                       "//extensions/shell")
201       sources += nacl_sources
202     }
203   }
205   if (is_win) {
206     deps += [ "//base/allocator" ]
207   }
210 process_version("version_header") {
211   template_file = "common/version.h.in"
212   output = "$target_gen_dir/common/version.h"