| 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 static_library("bindings") { | 5 static_library("bindings") { |
| 6 sources = [ | 6 sources = [ |
| 7 "array.h", | 7 "array.h", |
| 8 "array_data_view.h", | 8 "array_data_view.h", |
| 9 "array_traits.h", | 9 "array_traits.h", |
| 10 "array_traits_carray.h", | 10 "array_traits_carray.h", |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 "string_traits_standard.h", | 117 "string_traits_standard.h", |
| 118 "string_traits_stl.h", | 118 "string_traits_stl.h", |
| 119 "string_traits_string16.h", | 119 "string_traits_string16.h", |
| 120 "string_traits_string_piece.h", | 120 "string_traits_string_piece.h", |
| 121 "strong_binding.h", | 121 "strong_binding.h", |
| 122 "struct_ptr.h", | 122 "struct_ptr.h", |
| 123 "sync_call_restrictions.h", | 123 "sync_call_restrictions.h", |
| 124 "sync_handle_registry.h", | 124 "sync_handle_registry.h", |
| 125 "sync_handle_watcher.h", | 125 "sync_handle_watcher.h", |
| 126 "type_converter.h", | 126 "type_converter.h", |
| 127 "union_traits.h", |
| 127 ] | 128 ] |
| 128 | 129 |
| 129 public_deps = [ | 130 public_deps = [ |
| 130 ":struct_traits", | 131 ":struct_traits", |
| 131 "//base", | 132 "//base", |
| 132 "//ipc:param_traits", | 133 "//ipc:param_traits", |
| 133 "//mojo/public/cpp/system", | 134 "//mojo/public/cpp/system", |
| 134 ] | 135 ] |
| 135 | 136 |
| 136 deps = [ | 137 deps = [ |
| (...skipping 25 matching lines...) Expand all Loading... |
| 162 ] | 163 ] |
| 163 | 164 |
| 164 public_deps = [ | 165 public_deps = [ |
| 165 ":bindings", | 166 ":bindings", |
| 166 "//third_party/WebKit/Source/wtf", | 167 "//third_party/WebKit/Source/wtf", |
| 167 ] | 168 ] |
| 168 | 169 |
| 169 public_configs = [ "//third_party/WebKit/Source:config" ] | 170 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 170 } | 171 } |
| 171 } | 172 } |
| OLD | NEW |