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

Side by Side Diff: mojo/public/cpp/bindings/BUILD.gn

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 1 month 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("../../mojo_sdk.gni") 5 import("../../mojo_sdk.gni")
6 6
7 mojo_sdk_source_set("bindings") { 7 mojo_sdk_source_set("bindings") {
8 sources = [ 8 sources = [
9 "array.h", 9 "array.h",
10 "associated_interface_ptr_info.h", 10 "associated_interface_ptr_info.h",
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 "map.h", 58 "map.h",
59 "message.h", 59 "message.h",
60 "message_filter.h", 60 "message_filter.h",
61 "no_interface.h", 61 "no_interface.h",
62 "string.h", 62 "string.h",
63 "strong_binding.h", 63 "strong_binding.h",
64 "struct_ptr.h", 64 "struct_ptr.h",
65 "type_converter.h", 65 "type_converter.h",
66 ] 66 ]
67 67
68 deps = [ 68 public_deps = [
69 ":callback", 69 ":callback",
70 ] 70 ]
71 71
72 mojo_sdk_deps = [ 72 mojo_sdk_deps = [
73 "mojo/public/cpp/environment", 73 "mojo/public/cpp/environment",
74 "mojo/public/cpp/system", 74 "mojo/public/cpp/system",
75 "mojo/public/interfaces/bindings:bindings_cpp_sources", 75 "mojo/public/interfaces/bindings:bindings_cpp_sources",
76 ] 76 ]
77 } 77 }
78 78
79 mojo_sdk_source_set("callback") { 79 mojo_sdk_source_set("callback") {
80 sources = [ 80 sources = [
81 "callback.h", 81 "callback.h",
82 "lib/callback_internal.h", 82 "lib/callback_internal.h",
83 "lib/shared_data.h", 83 "lib/shared_data.h",
84 "lib/shared_ptr.h", 84 "lib/shared_ptr.h",
85 "lib/template_util.h", 85 "lib/template_util.h",
86 "lib/thread_checker.h", 86 "lib/thread_checker.h",
87 "lib/thread_checker_posix.cc", 87 "lib/thread_checker_posix.cc",
88 "lib/thread_checker_posix.h", 88 "lib/thread_checker_posix.h",
89 ] 89 ]
90 90
91 mojo_sdk_deps = [ "mojo/public/cpp/system" ] 91 mojo_sdk_deps = [ "mojo/public/cpp/system" ]
92 } 92 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698