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 public_deps = [ | 8 public_deps = [ |
9 ":common_base", | 9 ":common_base", |
10 ":url_type_converters", | 10 ":url_type_converters", |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 sources = [ | 106 sources = [ |
107 "../message_pump/handle_watcher_perftest.cc", | 107 "../message_pump/handle_watcher_perftest.cc", |
108 ] | 108 ] |
109 | 109 |
110 if (is_linux && !is_component_build) { | 110 if (is_linux && !is_component_build) { |
111 # This test dynamically loads libmojo_test_support even in non-component | 111 # This test dynamically loads libmojo_test_support even in non-component |
112 # builds. | 112 # builds. |
113 configs += [ "//build/config/gcc:rpath_for_built_shared_libraries" ] | 113 configs += [ "//build/config/gcc:rpath_for_built_shared_libraries" ] |
114 } | 114 } |
115 } | 115 } |
116 | |
117 source_set("mojo_scheme_register") { | |
118 sources = [ | |
119 "mojo_scheme_register.cc", | |
120 "mojo_scheme_register.h", | |
121 ] | |
122 | |
123 deps = [ | |
124 "//url", | |
125 ] | |
126 } | |
OLD | NEW |