| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 "buffer.h", | 10 "buffer.h", |
| 11 "interface.h", | 11 "interface.h", |
| 12 "map.h", | 12 "map.h", |
| 13 "message.h", | 13 "message.h", |
| 14 "string.h", | 14 "string.h", |
| 15 "struct.h", | 15 "struct.h", |
| 16 "union.h", | 16 "union.h", |
| 17 "validation.h", | 17 "validation.h", |
| 18 | 18 |
| 19 # Implementation details. | 19 # Implementation details. |
| 20 "lib/array.c", | 20 "lib/array.c", |
| 21 "lib/buffer.c", | 21 "lib/buffer.c", |
| 22 "lib/map.c", |
| 22 "lib/message.c", | 23 "lib/message.c", |
| 23 "lib/struct.c", | 24 "lib/struct.c", |
| 24 "lib/type_descriptor.c", | 25 "lib/type_descriptor.c", |
| 25 "lib/type_descriptor.h", | 26 "lib/type_descriptor.h", |
| 26 "lib/union.c", | 27 "lib/union.c", |
| 27 "lib/util.h", | 28 "lib/util.h", |
| 28 ] | 29 ] |
| 29 | 30 |
| 30 mojo_sdk_deps = [ "mojo/public/c/system" ] | 31 mojo_sdk_deps = [ "mojo/public/c/system" ] |
| 31 } | 32 } |
| OLD | NEW |