| 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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 group("common") { | 8 group("common") { |
| 9 public_deps = [ | 9 public_deps = [ |
| 10 ":common_base", | 10 ":common_base", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 } | 25 } |
| 26 | 26 |
| 27 component("common_base") { | 27 component("common_base") { |
| 28 output_name = "mojo_common_lib" | 28 output_name = "mojo_common_lib" |
| 29 | 29 |
| 30 sources = [ | 30 sources = [ |
| 31 "common_type_converters.cc", | 31 "common_type_converters.cc", |
| 32 "common_type_converters.h", | 32 "common_type_converters.h", |
| 33 "data_pipe_drainer.cc", | 33 "data_pipe_drainer.cc", |
| 34 "data_pipe_drainer.h", | 34 "data_pipe_drainer.h", |
| 35 "data_pipe_file_utils.cc", | |
| 36 "data_pipe_utils.cc", | 35 "data_pipe_utils.cc", |
| 37 "data_pipe_utils.h", | 36 "data_pipe_utils.h", |
| 38 "user_agent.cc", | |
| 39 "user_agent.h", | |
| 40 ] | 37 ] |
| 41 | 38 |
| 42 defines = [ "MOJO_COMMON_IMPLEMENTATION" ] | 39 defines = [ "MOJO_COMMON_IMPLEMENTATION" ] |
| 43 | 40 |
| 44 public_deps = [ | 41 public_deps = [ |
| 45 "//base", | 42 "//base", |
| 46 "//mojo/public/cpp/bindings", | 43 "//mojo/public/cpp/bindings", |
| 47 "//mojo/public/cpp/system", | 44 "//mojo/public/cpp/system", |
| 48 ] | 45 ] |
| 49 } | 46 } |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 sources = [ | 93 sources = [ |
| 97 "common_custom_types_struct_traits.cc", | 94 "common_custom_types_struct_traits.cc", |
| 98 "common_custom_types_struct_traits.h", | 95 "common_custom_types_struct_traits.h", |
| 99 ] | 96 ] |
| 100 deps = [ | 97 deps = [ |
| 101 ":common_custom_types_shared_cpp_sources", | 98 ":common_custom_types_shared_cpp_sources", |
| 102 "//base:base", | 99 "//base:base", |
| 103 "//mojo/public/cpp/system", | 100 "//mojo/public/cpp/system", |
| 104 ] | 101 ] |
| 105 } | 102 } |
| OLD | NEW |