| 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 # This target provides source files and dependencies required for serializing | 7 # This target provides source files and dependencies required for serializing |
| 8 # mojom types and has no references to the rest of the mojo system. It needs to | 8 # mojom types and has no references to the rest of the mojo system. It needs to |
| 9 # be linked with an |Environment| implementation for logging. | 9 # be linked with an |Environment| implementation for logging. |
| 10 mojo_sdk_source_set("serialization") { | 10 mojo_sdk_source_set("serialization") { |
| 11 sources = [ | 11 sources = [ |
| 12 "array.h", | 12 "array.h", |
| 13 "formatting.h", |
| 13 "lib/array_internal.cc", | 14 "lib/array_internal.cc", |
| 14 "lib/array_internal.h", | 15 "lib/array_internal.h", |
| 15 "lib/array_serialization.h", | 16 "lib/array_serialization.h", |
| 16 "lib/bindings_internal.h", | 17 "lib/bindings_internal.h", |
| 17 "lib/bindings_serialization.cc", | 18 "lib/bindings_serialization.cc", |
| 18 "lib/bindings_serialization.h", | 19 "lib/bindings_serialization.h", |
| 19 "lib/bounds_checker.cc", | 20 "lib/bounds_checker.cc", |
| 20 "lib/bounds_checker.h", | 21 "lib/bounds_checker.h", |
| 21 "lib/buffer.h", | 22 "lib/buffer.h", |
| 22 "lib/fixed_buffer.cc", | 23 "lib/fixed_buffer.cc", |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 sources = [ | 95 sources = [ |
| 95 "callback.h", | 96 "callback.h", |
| 96 "lib/callback_internal.h", | 97 "lib/callback_internal.h", |
| 97 "lib/shared_data.h", | 98 "lib/shared_data.h", |
| 98 "lib/shared_ptr.h", | 99 "lib/shared_ptr.h", |
| 99 "lib/template_util.h", | 100 "lib/template_util.h", |
| 100 ] | 101 ] |
| 101 | 102 |
| 102 mojo_sdk_deps = [ "mojo/public/cpp/system" ] | 103 mojo_sdk_deps = [ "mojo/public/cpp/system" ] |
| 103 } | 104 } |
| OLD | NEW |