| 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 # GYP version: mojo/mojo.gyp:mojo_common_lib | 5 # GYP version: mojo/mojo.gyp:mojo_common_lib |
| 6 component("common") { | 6 component("common") { |
| 7 output_name = "mojo_common_lib" | 7 output_name = "mojo_common_lib" |
| 8 | 8 |
| 9 sources = [ | 9 sources = [ |
| 10 "channel_init.cc", | 10 "channel_init.cc", |
| 11 "channel_init.h", | 11 "channel_init.h", |
| 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 "environment_data.cc", | |
| 17 "environment_data.h", | |
| 18 "handle_watcher.cc", | 16 "handle_watcher.cc", |
| 19 "handle_watcher.h", | 17 "handle_watcher.h", |
| 20 "message_pump_mojo.cc", | 18 "message_pump_mojo.cc", |
| 21 "message_pump_mojo.h", | 19 "message_pump_mojo.h", |
| 22 "message_pump_mojo_handler.h", | 20 "message_pump_mojo_handler.h", |
| 23 "time_helper.cc", | 21 "time_helper.cc", |
| 24 "time_helper.h", | 22 "time_helper.h", |
| 25 ] | 23 ] |
| 26 | 24 |
| 27 defines = [ "MOJO_COMMON_IMPLEMENTATION" ] | 25 defines = [ "MOJO_COMMON_IMPLEMENTATION" ] |
| 28 | 26 |
| 29 deps = [ | 27 deps = [ |
| 30 "//base", | 28 "//base", |
| 31 "//base/third_party/dynamic_annotations", | 29 "//base/third_party/dynamic_annotations", |
| 32 "//mojo/system", | 30 "//mojo/system", |
| 33 ] | 31 ] |
| 34 } | 32 } |
| OLD | NEW |