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
10 import("//chrome/version.gni")
11 import("//testing/test.gni")
12 import("//tools/grit/grit_rule.gni")
14 assert(enable_extensions)
17 source = "app_shell_resources.grd"
19 "grit/app_shell_resources.h",
20 "app_shell_resources.pak",
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
34 "//components/devtools_discovery",
35 "//components/devtools_http_handler",
36 "//components/guest_view:guest_view",
37 "//components/pref_registry",
38 "//components/update_client",
39 "//components/user_prefs",
40 "//components/web_cache/renderer",
42 "//content/shell:content_shell_lib",
45 "//extensions/common/api",
46 "//extensions/common/api:api_registration",
47 "//extensions/browser",
48 "//extensions/common",
49 "//extensions/renderer",
50 "//extensions/shell/common/api",
51 "//extensions/shell/common/api:api_registration",
52 "//extensions/utility",
53 "//extensions:extensions_resources",
54 "//extensions:shell_and_test_pak",
55 "//mojo/environment:chromium",
57 "//third_party/WebKit/public:blink",
58 "//third_party/mojo/src/mojo/edk/system",
64 sources = rebase_path(app_shell_gypi_values.app_shell_lib_sources,
71 aura_sources = rebase_path(app_shell_gypi_values.app_shell_lib_sources_aura,
74 sources += aura_sources
80 "//ui/chromeos:ui_chromeos",
84 rebase_path(app_shell_gypi_values.app_shell_lib_sources_chromeos,
87 sources += chromeos_sources
90 # TODO(GYP): Enable this when //components/nacl GN is done. See
91 # http://crbug.com/430602
95 deps += [ "//components/nacl:nacl_helper" ]
99 "//components/nacl:browser",
100 "//components/nacl:common",
101 "//components/nacl:renderer",
102 "//components/nacl:switches",
105 rebase_path(app_shell_gypi_values.app_shell_lib_sources_nacl,
107 "//extensions/shell")
108 sources += nacl_sources
114 "browser/shell_nacl_browser_delegate.cc",
115 "browser/shell_nacl_browser_delegate.h",
120 "//components/nacl:nacl_browser",
121 "//components/nacl:nacl_common",
122 "//components/nacl:nacl_renderer",
123 "//components/nacl:nacl_switches",
124 "//components/nacl/renderer/plugin:nacl_trusted_plugin",
128 deps += [ "//components/nacl:nacl_helper" ]
133 if (!(is_chromeos && !use_ozone)) {
134 executable("app_shell") {
135 # testonly because :app_shell_lib is testonly. See :app_shell_lib comment.
137 sources = rebase_path(app_shell_gypi_values.app_shell_sources,
139 "//extensions/shell")
142 "//extensions:shell_and_test_pak",
146 configs += [ "//build/config/win:windowed" ]
147 configs -= [ "//build/config/win:console" ]
148 deps += [ "//base/allocator" ]
152 # TODO(GYP): Mac bundling
157 test("app_shell_unittests") {
158 sources = rebase_path(app_shell_gypi_values.app_shell_unittests_sources,
160 "//extensions/shell")
165 "//base/test:test_support",
166 "//content/test:test_support",
167 "//extensions:shell_and_test_pak",
168 "//extensions:test_support",
173 deps += [ "//ui/aura:test_support" ]
176 rebase_path(app_shell_gypi_values.app_shell_unittests_sources_aura,
178 "//extensions/shell")
179 sources += aura_sources
183 deps += [ "//chromeos:test_support_without_gmock" ]
186 rebase_path(app_shell_gypi_values.app_shell_unittests_sources_chromeos,
188 "//extensions/shell")
189 sources += chromeos_sources
192 # TODO(GYP): Enable this when //components/nacl GN is done.
196 rebase_path(app_shell_gypi_values.app_shell_unittests_sources_nacl,
198 "//extensions/shell")
199 sources += nacl_sources
204 deps += [ "//base/allocator" ]
208 process_version("version_header") {
209 template_file = "common/version.h.in"
210 output = "$target_gen_dir/common/version.h"