| 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 interfaces_bindings_gen_dir = "$root_gen_dir/mojo/public/interfaces/bindings" | 5 interfaces_bindings_gen_dir = "$root_gen_dir/mojo/public/interfaces/bindings" |
| 6 | 6 |
| 7 component("bindings") { | 7 component("bindings") { |
| 8 sources = [ | 8 sources = [ |
| 9 # Normally, targets should depend on the source_sets generated by mojom | 9 # Normally, targets should depend on the source_sets generated by mojom |
| 10 # targets. However, the generated source_sets use portions of the bindings | 10 # targets. However, the generated source_sets use portions of the bindings |
| 11 # library. In order to avoid linker warnings about locally-defined imports | 11 # library. In order to avoid linker warnings about locally-defined imports |
| 12 # in Windows components build, this target depends on the generated C++ | 12 # in Windows components build, this target depends on the generated C++ |
| 13 # files directly so that the EXPORT macro defintions match. | 13 # files directly so that the EXPORT macro defintions match. |
| 14 "$interfaces_bindings_gen_dir/interface_control_messages.mojom-shared-intern
al.h", | 14 "$interfaces_bindings_gen_dir/interface_control_messages.mojom-shared-intern
al.h", |
| 15 "$interfaces_bindings_gen_dir/interface_control_messages.mojom-shared.cc", | 15 "$interfaces_bindings_gen_dir/interface_control_messages.mojom-shared.cc", |
| 16 "$interfaces_bindings_gen_dir/interface_control_messages.mojom-shared.h", | 16 "$interfaces_bindings_gen_dir/interface_control_messages.mojom-shared.h", |
| 17 "$interfaces_bindings_gen_dir/interface_control_messages.mojom.cc", | 17 "$interfaces_bindings_gen_dir/interface_control_messages.mojom.cc", |
| 18 "$interfaces_bindings_gen_dir/interface_control_messages.mojom.h", | 18 "$interfaces_bindings_gen_dir/interface_control_messages.mojom.h", |
| 19 "$interfaces_bindings_gen_dir/pipe_control_messages.mojom-shared-internal.h"
, | 19 "$interfaces_bindings_gen_dir/pipe_control_messages.mojom-shared-internal.h"
, |
| 20 "$interfaces_bindings_gen_dir/pipe_control_messages.mojom-shared.cc", | 20 "$interfaces_bindings_gen_dir/pipe_control_messages.mojom-shared.cc", |
| 21 "$interfaces_bindings_gen_dir/pipe_control_messages.mojom-shared.h", | 21 "$interfaces_bindings_gen_dir/pipe_control_messages.mojom-shared.h", |
| 22 "$interfaces_bindings_gen_dir/pipe_control_messages.mojom.cc", | 22 "$interfaces_bindings_gen_dir/pipe_control_messages.mojom.cc", |
| 23 "$interfaces_bindings_gen_dir/pipe_control_messages.mojom.h", | 23 "$interfaces_bindings_gen_dir/pipe_control_messages.mojom.h", |
| 24 "array_data_view.h", | 24 "array_data_view.h", |
| 25 "array_traits.h", | 25 "array_traits.h", |
| 26 "array_traits_carray.h", | 26 "array_traits_carray.h", |
| 27 "array_traits_stl.h", | 27 "array_traits_stl.h", |
| 28 "associated_binding.cc", |
| 28 "associated_binding.h", | 29 "associated_binding.h", |
| 29 "associated_binding_set.h", | 30 "associated_binding_set.h", |
| 30 "associated_group.h", | 31 "associated_group.h", |
| 31 "associated_group_controller.h", | 32 "associated_group_controller.h", |
| 32 "associated_interface_ptr.h", | 33 "associated_interface_ptr.h", |
| 33 "associated_interface_ptr_info.h", | 34 "associated_interface_ptr_info.h", |
| 34 "associated_interface_request.h", | 35 "associated_interface_request.h", |
| 35 "binding.h", | 36 "binding.h", |
| 36 "binding_set.h", | 37 "binding_set.h", |
| 37 "bindings_export.h", | 38 "bindings_export.h", |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 ] | 178 ] |
| 178 | 179 |
| 179 public_deps = [ | 180 public_deps = [ |
| 180 ":bindings", | 181 ":bindings", |
| 181 "//third_party/WebKit/Source/wtf", | 182 "//third_party/WebKit/Source/wtf", |
| 182 ] | 183 ] |
| 183 | 184 |
| 184 public_configs = [ "//third_party/WebKit/Source:config" ] | 185 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 185 } | 186 } |
| 186 } | 187 } |
| OLD | NEW |