| 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/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 | 6 |
| 7 # GYP version: mojo/mojo_base.gyp:mojo_common_lib | 7 # GYP version: mojo/mojo_base.gyp:mojo_common_lib |
| 8 component("common") { | 8 component("common") { |
| 9 output_name = "mojo_common_lib" | 9 output_name = "mojo_common_lib" |
| 10 | 10 |
| 11 sources = [ | 11 sources = [ |
| 12 "common_type_converters.cc", | 12 "common_type_converters.cc", |
| 13 "common_type_converters.h", | 13 "common_type_converters.h", |
| 14 "data_pipe_utils.cc", | 14 "data_pipe_utils.cc", |
| 15 "data_pipe_utils.h", | 15 "data_pipe_utils.h", |
| 16 "data_pipe_drainer.h", |
| 17 "data_pipe_drainer.cc", |
| 16 "handle_watcher.cc", | 18 "handle_watcher.cc", |
| 17 "handle_watcher.h", | 19 "handle_watcher.h", |
| 18 "message_pump_mojo.cc", | 20 "message_pump_mojo.cc", |
| 19 "message_pump_mojo.h", | 21 "message_pump_mojo.h", |
| 20 "message_pump_mojo_handler.h", | 22 "message_pump_mojo_handler.h", |
| 21 "time_helper.cc", | 23 "time_helper.cc", |
| 22 "time_helper.h", | 24 "time_helper.h", |
| 23 "weak_binding_set.h", | 25 "weak_binding_set.h", |
| 24 ] | 26 ] |
| 25 | 27 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 "tracing_impl.h", | 68 "tracing_impl.h", |
| 67 ] | 69 ] |
| 68 | 70 |
| 69 deps = [ | 71 deps = [ |
| 70 "//base", | 72 "//base", |
| 71 "//mojo/public/cpp/application", | 73 "//mojo/public/cpp/application", |
| 72 "//mojo/public/cpp/bindings", | 74 "//mojo/public/cpp/bindings", |
| 73 "//services/tracing:bindings", | 75 "//services/tracing:bindings", |
| 74 ] | 76 ] |
| 75 } | 77 } |
| OLD | NEW |