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 "binding.h", | 10 "binding.h", |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 "lib/message_header_validator.cc", | 43 "lib/message_header_validator.cc", |
44 "lib/message_header_validator.h", | 44 "lib/message_header_validator.h", |
45 "lib/message_internal.h", | 45 "lib/message_internal.h", |
46 "lib/message_queue.cc", | 46 "lib/message_queue.cc", |
47 "lib/message_queue.h", | 47 "lib/message_queue.h", |
48 "lib/no_interface.cc", | 48 "lib/no_interface.cc", |
49 "lib/router.cc", | 49 "lib/router.cc", |
50 "lib/router.h", | 50 "lib/router.h", |
51 "lib/string_serialization.cc", | 51 "lib/string_serialization.cc", |
52 "lib/string_serialization.h", | 52 "lib/string_serialization.h", |
| 53 "lib/union_accessor.h", |
53 "lib/validate_params.h", | 54 "lib/validate_params.h", |
54 "lib/validation_errors.cc", | 55 "lib/validation_errors.cc", |
55 "lib/validation_errors.h", | 56 "lib/validation_errors.h", |
56 ] | 57 ] |
57 | 58 |
58 deps = [ | 59 deps = [ |
59 ":callback", | 60 ":callback", |
60 ] | 61 ] |
61 | 62 |
62 mojo_sdk_deps = [ | 63 mojo_sdk_deps = [ |
63 "mojo/public/cpp/environment", | 64 "mojo/public/cpp/environment", |
64 "mojo/public/cpp/system", | 65 "mojo/public/cpp/system", |
65 ] | 66 ] |
66 } | 67 } |
67 | 68 |
68 mojo_sdk_source_set("callback") { | 69 mojo_sdk_source_set("callback") { |
69 sources = [ | 70 sources = [ |
70 "callback.h", | 71 "callback.h", |
71 "lib/callback_internal.h", | 72 "lib/callback_internal.h", |
72 "lib/template_util.h", | 73 "lib/template_util.h", |
73 "lib/shared_data.h", | 74 "lib/shared_data.h", |
74 "lib/shared_ptr.h", | 75 "lib/shared_ptr.h", |
75 ] | 76 ] |
76 | 77 |
77 mojo_sdk_deps = [ "mojo/public/cpp/system" ] | 78 mojo_sdk_deps = [ "mojo/public/cpp/system" ] |
78 } | 79 } |
OLD | NEW |