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

Unified Diff: components/ui_devtools/views/BUILD.gn

Issue 2899783002: Move DevTools out of ash and turn it to a component. (Closed)
Patch Set: NON_EXPORTED_BASE base class Created 3 years, 6 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
Index: components/ui_devtools/views/BUILD.gn
diff --git a/components/ui_devtools/views/BUILD.gn b/components/ui_devtools/views/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..514fadfb17075fe77575d02a7fbfc49ab80c7e9e
--- /dev/null
+++ b/components/ui_devtools/views/BUILD.gn
@@ -0,0 +1,62 @@
+# 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("//build/config/ui.gni")
+
+source_set("views") {
+ cflags = []
+ if (is_win) {
+ cflags += [ "/wd4800" ] # Value forced to bool.
+ }
+
+ sources = [
+ "ui_devtools_css_agent.cc",
+ "ui_devtools_css_agent.h",
+ "ui_devtools_dom_agent.cc",
+ "ui_devtools_dom_agent.h",
+ "ui_element.cc",
+ "ui_element.h",
+ "ui_element_delegate.h",
+ "view_element.cc",
+ "view_element.h",
+ "widget_element.cc",
+ "widget_element.h",
+ "window_element.cc",
+ "window_element.h",
+ ]
+
+ deps = [
+ "//components/ui_devtools",
+ "//skia",
+ "//ui/aura",
+ "//ui/views",
+ "//ui/wm:wm",
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+
+ cflags = []
+ if (is_win) {
+ cflags += [ "/wd4800" ] # Value forced to bool.
+ }
+
+ sources = [
+ "ui_devtools_unittest.cc",
+ ]
+
+ deps = [
+ ":views",
+ "//components/ui_devtools",
+ "//skia",
+ "//testing/gtest",
+ "//ui/aura",
+ "//ui/views",
+ "//ui/views:test_support",
+ "//ui/wm:wm",
+ ]
+
+ configs += [ "//build/config:precompiled_headers" ]
+}

Powered by Google App Engine
This is Rietveld 408576698