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 source_set("bindings") { |
6 sources = [ | 6 sources = [ |
7 "array.h", | 7 "array.h", |
8 "array_traits.h", | 8 "array_traits.h", |
9 "array_traits_standard.h", | 9 "array_traits_standard.h", |
10 "array_traits_stl.h", | 10 "array_traits_stl.h", |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 "lib/sync_handle_watcher.cc", | 85 "lib/sync_handle_watcher.cc", |
86 "lib/sync_handle_watcher.h", | 86 "lib/sync_handle_watcher.h", |
87 "lib/union_accessor.h", | 87 "lib/union_accessor.h", |
88 "lib/validate_params.h", | 88 "lib/validate_params.h", |
89 "lib/validation_errors.cc", | 89 "lib/validation_errors.cc", |
90 "lib/validation_errors.h", | 90 "lib/validation_errors.h", |
91 "lib/validation_util.cc", | 91 "lib/validation_util.cc", |
92 "lib/validation_util.h", | 92 "lib/validation_util.h", |
93 "lib/value_traits.h", | 93 "lib/value_traits.h", |
94 "map.h", | 94 "map.h", |
| 95 "map_traits.h", |
| 96 "map_traits_standard.h", |
| 97 "map_traits_stl.h", |
95 "message.h", | 98 "message.h", |
96 "message_filter.h", | 99 "message_filter.h", |
97 "native_struct.h", | 100 "native_struct.h", |
98 "no_interface.h", | 101 "no_interface.h", |
99 "scoped_interface_endpoint_handle.h", | 102 "scoped_interface_endpoint_handle.h", |
100 "stl_converters.h", | 103 "stl_converters.h", |
101 "string.h", | 104 "string.h", |
102 "string_traits.h", | 105 "string_traits.h", |
103 "string_traits_standard.h", | 106 "string_traits_standard.h", |
104 "string_traits_stl.h", | 107 "string_traits_stl.h", |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 ] | 159 ] |
157 | 160 |
158 public_deps = [ | 161 public_deps = [ |
159 ":bindings", | 162 ":bindings", |
160 "//third_party/WebKit/Source/wtf", | 163 "//third_party/WebKit/Source/wtf", |
161 ] | 164 ] |
162 | 165 |
163 public_configs = [ "//third_party/WebKit/Source:config" ] | 166 public_configs = [ "//third_party/WebKit/Source:config" ] |
164 } | 167 } |
165 } | 168 } |
OLD | NEW |