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

Unified Diff: components/physical_web/eddystone/BUILD.gn

Issue 2731273004: Add Platform Independent Eddystone Encoder (Closed)
Patch Set: Fixing more Casting Created 3 years, 9 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 | « components/BUILD.gn ('k') | components/physical_web/eddystone/eddystone_encoder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/physical_web/eddystone/BUILD.gn
diff --git a/components/physical_web/eddystone/BUILD.gn b/components/physical_web/eddystone/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..a77baaaa240860a46f57993660418a714a501aad
--- /dev/null
+++ b/components/physical_web/eddystone/BUILD.gn
@@ -0,0 +1,27 @@
+# Copyright 2017 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.
+
+source_set("eddystone") {
+ sources = [
+ "eddystone_encoder.cc",
+ "eddystone_encoder.h",
+ ]
+
+ deps = [
+ "//url",
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+ sources = [
+ "eddystone_encoder_unittest.cc",
+ ]
+
+ deps = [
+ ":eddystone",
+ "//testing/gtest",
+ "//url",
+ ]
+}
« no previous file with comments | « components/BUILD.gn ('k') | components/physical_web/eddystone/eddystone_encoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698