| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |