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

Unified Diff: ui/app_list/shower/BUILD.gn

Issue 1830293002: AppListController refactoring part 1: AppListShower implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing target names in .isolate. Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « testing/buildbot/tryserver.v8.json ('k') | ui/app_list/shower/app_list_shower.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/shower/BUILD.gn
diff --git a/ui/app_list/shower/BUILD.gn b/ui/app_list/shower/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..f87244da79385b1b85ae970c919bc7cdfd312f96
--- /dev/null
+++ b/ui/app_list/shower/BUILD.gn
@@ -0,0 +1,73 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//testing/test.gni")
+import("//build/config/ui.gni")
+
+assert(use_aura)
+
+component("shower") {
+ sources = [
+ "app_list_shower.h",
+ "app_list_shower_delegate.h",
+ "app_list_shower_delegate_factory.h",
+ "app_list_shower_export.h",
+ "app_list_shower_impl.cc",
+ "app_list_shower_impl.h",
+ ]
+
+ defines = [ "APP_LIST_SHOWER_IMPLEMENTATION" ]
+
+ public_deps = [
+ "//base",
+ "//ui/app_list",
+ "//ui/aura",
+ "//ui/compositor",
+ "//ui/gfx/geometry",
+ "//ui/views",
+ ]
+}
+
+source_set("test_support") {
+ sources = [
+ "test/app_list_shower_impl_test_api.cc",
+ "test/app_list_shower_impl_test_api.h",
+ ]
+
+ public_deps = [
+ ":shower",
+ ]
+ deps = [
+ "//base",
+ ]
+}
+
+test("app_list_shower_unittests") {
+ sources = [
+ "app_list_shower_impl_unittest.cc",
+ "test/run_all_unittests.cc",
+ ]
+
+ # TODO: Add to data_deps instead once GN has rolled past #339778.
+ data = [
+ "$root_out_dir/ui_test.pak",
+ ]
+
+ configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
+
+ deps = [
+ ":shower",
+ ":test_support",
+ "//base",
+ "//base/test:test_support",
+ "//testing/gtest",
+ "//ui/app_list:test_support",
+ "//ui/aura:aura",
+ "//ui/aura:test_support",
+ "//ui/base",
+ "//ui/gl:test_support",
+ "//ui/resources:ui_test_pak",
+ "//ui/wm:wm",
+ ]
+}
« no previous file with comments | « testing/buildbot/tryserver.v8.json ('k') | ui/app_list/shower/app_list_shower.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698