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_carray.h", |
9 "array_traits_standard.h", | 10 "array_traits_standard.h", |
10 "array_traits_stl.h", | 11 "array_traits_stl.h", |
11 "associated_binding.h", | 12 "associated_binding.h", |
12 "associated_group.h", | 13 "associated_group.h", |
13 "associated_interface_ptr.h", | 14 "associated_interface_ptr.h", |
14 "associated_interface_ptr_info.h", | 15 "associated_interface_ptr_info.h", |
15 "associated_interface_request.h", | 16 "associated_interface_request.h", |
16 "binding.h", | 17 "binding.h", |
17 "binding_set.h", | 18 "binding_set.h", |
18 "interface_ptr.h", | 19 "interface_ptr.h", |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 ] | 159 ] |
159 | 160 |
160 public_deps = [ | 161 public_deps = [ |
161 ":bindings", | 162 ":bindings", |
162 "//third_party/WebKit/Source/wtf", | 163 "//third_party/WebKit/Source/wtf", |
163 ] | 164 ] |
164 | 165 |
165 public_configs = [ "//third_party/WebKit/Source:config" ] | 166 public_configs = [ "//third_party/WebKit/Source:config" ] |
166 } | 167 } |
167 } | 168 } |
OLD | NEW |