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

Unified Diff: mojo/public/BUILD.gn

Issue 259823005: Add GN targets for mojom generator (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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: mojo/public/BUILD.gn
diff --git a/mojo/public/BUILD.gn b/mojo/public/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..93af4e5cffe1e24f429e312928027e64844afece
--- /dev/null
+++ b/mojo/public/BUILD.gn
@@ -0,0 +1,47 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
viettrungluu 2014/04/28 21:25:50 This file probably should be in the cpp subdirecto
yzshen1 2014/04/28 22:57:20 I put it here because of the js/bindings/constants
viettrungluu 2014/04/28 23:32:47 Yes.
yzshen1 2014/04/29 03:58:13 Done.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+source_set("bindings") {
+ sources = [
+ "cpp/bindings/allocation_scope.h",
+ "cpp/bindings/array.h",
+ "cpp/bindings/buffer.h",
+ "cpp/bindings/callback.h",
+ "cpp/bindings/error_handler.h",
+ "cpp/bindings/interface.h",
+ "cpp/bindings/message.h",
+ "cpp/bindings/passable.h",
+ "cpp/bindings/remote_ptr.h",
+ "cpp/bindings/sync_dispatcher.h",
+ "cpp/bindings/type_converter.h",
+ "cpp/bindings/lib/array.cc",
+ "cpp/bindings/lib/array_internal.h",
+ "cpp/bindings/lib/array_internal.cc",
+ "cpp/bindings/lib/bindings_internal.h",
+ "cpp/bindings/lib/bindings_serialization.cc",
+ "cpp/bindings/lib/bindings_serialization.h",
+ "cpp/bindings/lib/buffer.cc",
+ "cpp/bindings/lib/callback_internal.h",
+ "cpp/bindings/lib/connector.cc",
+ "cpp/bindings/lib/connector.h",
+ "cpp/bindings/lib/fixed_buffer.cc",
+ "cpp/bindings/lib/fixed_buffer.h",
+ "cpp/bindings/lib/interface.cc",
+ "cpp/bindings/lib/message.cc",
+ "cpp/bindings/lib/message_builder.cc",
+ "cpp/bindings/lib/message_builder.h",
+ "cpp/bindings/lib/message_internal.h",
+ "cpp/bindings/lib/message_queue.cc",
+ "cpp/bindings/lib/message_queue.h",
+ "cpp/bindings/lib/router.cc",
+ "cpp/bindings/lib/router.h",
+ "cpp/bindings/lib/scratch_buffer.cc",
+ "cpp/bindings/lib/scratch_buffer.h",
+ "cpp/bindings/lib/shared_data.h",
+ "cpp/bindings/lib/shared_ptr.h",
+ "cpp/bindings/lib/sync_dispatcher.cc",
+ "js/bindings/constants.cc",
viettrungluu 2014/04/28 21:25:50 These files don't exist.
yzshen1 2014/04/28 22:57:20 Sorry I probably haven't understood: It seems they
viettrungluu 2014/04/28 23:32:47 Oops, sorry, I misread the filenames. They don't
yzshen1 2014/04/29 03:58:13 Done.
+ "js/bindings/constants.h",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698