| 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 source_set("bindings") { | 5 import("../../mojo_sdk.gni") |
| 6 |
| 7 mojo_sdk_source_set("bindings") { |
| 6 sources = [ | 8 sources = [ |
| 7 "array.h", | 9 "array.h", |
| 8 "binding.h", | 10 "binding.h", |
| 9 "error_handler.h", | 11 "error_handler.h", |
| 10 "interface_ptr.h", | 12 "interface_ptr.h", |
| 11 "map.h", | 13 "map.h", |
| 12 "message.h", | 14 "message.h", |
| 13 "message_filter.h", | 15 "message_filter.h", |
| 14 "no_interface.h", | 16 "no_interface.h", |
| 15 "strong_binding.h", | 17 "strong_binding.h", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "lib/router.h", | 50 "lib/router.h", |
| 49 "lib/string_serialization.cc", | 51 "lib/string_serialization.cc", |
| 50 "lib/string_serialization.h", | 52 "lib/string_serialization.h", |
| 51 "lib/validate_params.h", | 53 "lib/validate_params.h", |
| 52 "lib/validation_errors.cc", | 54 "lib/validation_errors.cc", |
| 53 "lib/validation_errors.h", | 55 "lib/validation_errors.h", |
| 54 ] | 56 ] |
| 55 | 57 |
| 56 deps = [ | 58 deps = [ |
| 57 ":callback", | 59 ":callback", |
| 58 "//mojo/public/cpp/environment", | 60 ] |
| 59 "//mojo/public/cpp/system", | 61 |
| 62 mojo_sdk_deps = [ |
| 63 "mojo/public/cpp/environment", |
| 64 "mojo/public/cpp/system", |
| 60 ] | 65 ] |
| 61 } | 66 } |
| 62 | 67 |
| 63 source_set("callback") { | 68 mojo_sdk_source_set("callback") { |
| 64 sources = [ | 69 sources = [ |
| 65 "callback.h", | 70 "callback.h", |
| 66 "lib/callback_internal.h", | 71 "lib/callback_internal.h", |
| 67 "lib/template_util.h", | 72 "lib/template_util.h", |
| 68 "lib/shared_data.h", | 73 "lib/shared_data.h", |
| 69 "lib/shared_ptr.h", | 74 "lib/shared_ptr.h", |
| 70 ] | 75 ] |
| 71 | 76 |
| 72 deps = [ | 77 mojo_sdk_deps = [ "mojo/public/cpp/system" ] |
| 73 "//mojo/public/cpp/system", | |
| 74 ] | |
| 75 } | 78 } |
| OLD | NEW |