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

Unified Diff: ui/views_content_client/BUILD.gn

Issue 551373005: Enable ash shell and unit tests in GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: non-exported base for windows Created 6 years, 3 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 | « ui/views/examples/examples.gyp ('k') | ui/views_content_client/views_content_client.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views_content_client/BUILD.gn
diff --git a/ui/views_content_client/BUILD.gn b/ui/views_content_client/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..da07151dffc8fcf0a3ebaa201a69bd51cf3c612e
--- /dev/null
+++ b/ui/views_content_client/BUILD.gn
@@ -0,0 +1,52 @@
+# Copyright 2014 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("//build/config/ui.gni")
+
+component("views_content_client") {
+ testonly = true
+ sources = [
+ "views_content_browser_client.cc",
+ "views_content_browser_client.h",
+ "views_content_client.cc",
+ "views_content_client.h",
+ "views_content_client_export.h",
+ "views_content_client_main_parts.cc",
+ "views_content_client_main_parts.h",
+ "views_content_client_main_parts_chromeos.cc",
+ "views_content_client_main_parts_mac.mm",
+ "views_content_main_delegate.cc",
+ ]
+
+ defines = [ "VIEWS_CONTENT_CLIENT_IMPLEMENTATION" ]
+
+ deps = [
+ "//base",
+ "//base:i18n",
+ "//content",
+ "//content/shell:content_shell_lib",
+ "//third_party/icu",
+ "//ui/base",
+ "//ui/events",
+ "//ui/gfx",
+ "//ui/gfx/geometry",
+ "//ui/resources",
+ "//ui/resources:ui_test_pak",
+ "//ui/views",
+ "//ui/views:test_support",
+ ]
+
+ if (use_aura) {
+ sources += [
+ "views_content_client_main_parts_aura.cc",
+ "views_content_client_main_parts_aura.h",
+ ]
+
+ if (!is_chromeos) {
+ sources += [ "views_content_client_main_parts_desktop_aura.cc" ]
+ }
+
+ deps += [ "//ui/aura" ]
+ }
+}
« no previous file with comments | « ui/views/examples/examples.gyp ('k') | ui/views_content_client/views_content_client.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698