| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 group("common") { | 7 group("common") { |
| 8 deps = [ | 8 deps = [ |
| 9 ":common_base", | 9 ":common_base", |
| 10 ":url_type_converters", | 10 ":url_type_converters", |
| 11 ] | 11 ] |
| 12 } | 12 } |
| 13 | 13 |
| 14 # GYP version: mojo/mojo_base.gyp:mojo_common_lib | 14 # GYP version: mojo/mojo_base.gyp:mojo_common_lib |
| 15 source_set("common_base") { | 15 component("common_base") { |
| 16 output_name = "mojo_common_lib" | 16 output_name = "mojo_common_lib" |
| 17 | 17 |
| 18 sources = [ | 18 sources = [ |
| 19 "common_type_converters.cc", | 19 "common_type_converters.cc", |
| 20 "common_type_converters.h", | 20 "common_type_converters.h", |
| 21 "data_pipe_file_utils.cc", | 21 "data_pipe_file_utils.cc", |
| 22 "data_pipe_utils.cc", | 22 "data_pipe_utils.cc", |
| 23 "data_pipe_utils.h", | 23 "data_pipe_utils.h", |
| 24 "handle_watcher.cc", | 24 "handle_watcher.cc", |
| 25 "handle_watcher.h", | 25 "handle_watcher.h", |
| 26 "message_pump_mojo.cc", | 26 "message_pump_mojo.cc", |
| 27 "message_pump_mojo.h", | 27 "message_pump_mojo.h", |
| 28 "message_pump_mojo_handler.h", | 28 "message_pump_mojo_handler.h", |
| 29 "time_helper.cc", | 29 "time_helper.cc", |
| 30 "time_helper.h", | 30 "time_helper.h", |
| 31 "user_agent.cc", | 31 "user_agent.cc", |
| 32 "user_agent.h", | 32 "user_agent.h", |
| 33 "weak_binding_set.h", | 33 "weak_binding_set.h", |
| 34 "weak_interface_ptr_set.h", | 34 "weak_interface_ptr_set.h", |
| 35 ] | 35 ] |
| 36 | 36 |
| 37 defines = [ "MOJO_COMMON_IMPLEMENTATION" ] | 37 defines = [ "MOJO_COMMON_IMPLEMENTATION" ] |
| 38 | 38 |
| 39 deps = [ | 39 deps = [ |
| 40 "//base", | 40 "//base", |
| 41 "//base/third_party/dynamic_annotations", | 41 "//base/third_party/dynamic_annotations", |
| 42 "//third_party/mojo/src/mojo/public/c/system:for_component", | 42 "//third_party/mojo/src/mojo/public/c/system:for_component", |
| 43 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", | |
| 44 "//third_party/mojo/src/mojo/public/cpp/system:system", | |
| 45 ] | 43 ] |
| 46 } | 44 } |
| 47 | 45 |
| 48 # GYP version: mojo/mojo_base.gyp:mojo_url_type_converters | 46 # GYP version: mojo/mojo_base.gyp:mojo_url_type_converters |
| 49 source_set("url_type_converters") { | 47 source_set("url_type_converters") { |
| 50 sources = [ | 48 sources = [ |
| 51 "url_type_converters.cc", | 49 "url_type_converters.cc", |
| 52 "url_type_converters.h", | 50 "url_type_converters.h", |
| 53 ] | 51 ] |
| 54 | 52 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 ] | 94 ] |
| 97 | 95 |
| 98 deps = [ | 96 deps = [ |
| 99 "//base", | 97 "//base", |
| 100 "//mojo/application/public/cpp", | 98 "//mojo/application/public/cpp", |
| 101 "//mojo/services/tracing:bindings", | 99 "//mojo/services/tracing:bindings", |
| 102 "//third_party/mojo/src/mojo/public/cpp/bindings", | 100 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 103 ] | 101 ] |
| 104 } | 102 } |
| 105 } | 103 } |
| OLD | NEW |