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

Unified Diff: blimp/common/BUILD.gn

Issue 1295243003: Initial commit of the blimp/ folder and target (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moar nitz Created 5 years, 4 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: blimp/common/BUILD.gn
diff --git a/blimp/common/BUILD.gn b/blimp/common/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..ecb8a8971ab203617fbde21badc5c9d2f863be2e
--- /dev/null
+++ b/blimp/common/BUILD.gn
@@ -0,0 +1,24 @@
+# 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.
+
+component("blimp_common") {
+ sources = [
+ # TODO(dtrainor): Remove this once the LayerTreeHost settings for Blimp
+ # are finalized or are pushed from the server component.
+ "../../content/public/common/content_switches.cc",
+ "blimp_common_export.h",
+ "compositor/blimp_layer_tree_settings.cc",
+ "compositor/blimp_layer_tree_settings.h",
+ ]
+
+ defines = [ "BLIMP_COMMON_IMPLEMENTATION=1" ]
+
+ deps = [
+ "//base",
+ "//cc",
+ "//skia",
+ "//ui/gfx/geometry",
+ "//ui/gl",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698