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

Unified Diff: extensions/browser/api/display_source/BUILD.gn

Issue 2336843002: Decompose //extensions/browser/BUILD.gn (Closed)
Patch Set: win fix Created 4 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
Index: extensions/browser/api/display_source/BUILD.gn
diff --git a/extensions/browser/api/display_source/BUILD.gn b/extensions/browser/api/display_source/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..54b203ed672860160fadad11f905e0e36141abea
--- /dev/null
+++ b/extensions/browser/api/display_source/BUILD.gn
@@ -0,0 +1,36 @@
+# Copyright 2015 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/features.gni")
+
+source_set("display_source") {
+ sources = [
+ "display_source_api.cc",
+ "display_source_api.h",
+ "display_source_connection_delegate.cc",
+ "display_source_connection_delegate.h",
+ "display_source_connection_delegate_factory.cc",
+ "display_source_connection_delegate_factory.h",
+ "display_source_event_router.cc",
+ "display_source_event_router.h",
+ "display_source_event_router_factory.cc",
+ "display_source_event_router_factory.h",
+ ]
+
+ deps = [
+ "//content/public/browser",
+ "//skia",
+ ]
+
+ if (!is_chromeos) {
+ if (proprietary_codecs && enable_wifi_display) {
+ sources += [
+ "wifi_display/wifi_display_media_service_impl.cc",
+ "wifi_display/wifi_display_media_service_impl.h",
+ "wifi_display/wifi_display_session_service_impl.cc",
+ "wifi_display/wifi_display_session_service_impl.h",
+ ]
+ }
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698