| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//build/module_args/mojo.gni") | 5 import("//build/module_args/mojo.gni") |
| 6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 | 8 |
| 9 mojo_native_application("authenticating_url_loader_interceptor") { | 9 mojo_native_application("authenticating_url_loader_interceptor") { |
| 10 sources = [ | 10 sources = [ |
| 11 "authenticating_url_loader_interceptor.cc", | 11 "authenticating_url_loader_interceptor.cc", |
| 12 "authenticating_url_loader_interceptor.h", | 12 "authenticating_url_loader_interceptor.h", |
| 13 "authenticating_url_loader_interceptor_app.cc", | 13 "authenticating_url_loader_interceptor_app.cc", |
| 14 "authenticating_url_loader_interceptor_app.h", | 14 "authenticating_url_loader_interceptor_app.h", |
| 15 "authenticating_url_loader_interceptor_factory.cc", | 15 "authenticating_url_loader_interceptor_factory.cc", |
| 16 "authenticating_url_loader_interceptor_factory.h", | 16 "authenticating_url_loader_interceptor_factory.h", |
| 17 "authenticating_url_loader_interceptor_meta_factory_impl.cc", | 17 "authenticating_url_loader_interceptor_meta_factory_impl.cc", |
| 18 "authenticating_url_loader_interceptor_meta_factory_impl.h", | 18 "authenticating_url_loader_interceptor_meta_factory_impl.h", |
| 19 ] | 19 ] |
| 20 | 20 |
| 21 deps = [ | 21 deps = [ |
| 22 "//base", | 22 "//base", |
| 23 "//mojo/application", | 23 "//mojo/application", |
| 24 "//mojo/common", | 24 "//mojo/common", |
| 25 "//mojo/public/c/system", | 25 "//mojo/public/c/system", |
| 26 "//mojo/public/cpp/application", | 26 "//mojo/public/cpp/application", |
| 27 "//mojo/public/cpp/bindings", | 27 "//mojo/public/cpp/bindings", |
| 28 "//mojo/services/authenticating_url_loader_interceptor/public/interfaces", | 28 "//mojo/services/authenticating_url_loader_interceptor/interfaces", |
| 29 "//mojo/services/authentication/public/interfaces", | 29 "//mojo/services/authentication/interfaces", |
| 30 "//mojo/services/network/public/interfaces", | 30 "//mojo/services/network/public/interfaces", |
| 31 "//url", | 31 "//url", |
| 32 ] | 32 ] |
| 33 } | 33 } |
| 34 | 34 |
| 35 mojo_native_application("apptests") { | 35 mojo_native_application("apptests") { |
| 36 testonly = true | 36 testonly = true |
| 37 output_name = "authenticating_url_loader_interceptor_apptests" | 37 output_name = "authenticating_url_loader_interceptor_apptests" |
| 38 | 38 |
| 39 sources = [ | 39 sources = [ |
| 40 "authenticating_url_loader_interceptor_apptest.cc", | 40 "authenticating_url_loader_interceptor_apptest.cc", |
| 41 ] | 41 ] |
| 42 | 42 |
| 43 deps = [ | 43 deps = [ |
| 44 "//base", | 44 "//base", |
| 45 "//mojo/application", | 45 "//mojo/application", |
| 46 "//mojo/application:test_support", | 46 "//mojo/application:test_support", |
| 47 "//mojo/public/cpp/application", | 47 "//mojo/public/cpp/application", |
| 48 "//mojo/public/cpp/bindings", | 48 "//mojo/public/cpp/bindings", |
| 49 "//mojo/public/cpp/system", | 49 "//mojo/public/cpp/system", |
| 50 "//mojo/services/authenticating_url_loader_interceptor/public/interfaces", | 50 "//mojo/services/authenticating_url_loader_interceptor/interfaces", |
| 51 "//mojo/services/network/public/interfaces", | 51 "//mojo/services/network/public/interfaces", |
| 52 "//testing/gtest", | 52 "//testing/gtest", |
| 53 ] | 53 ] |
| 54 } | 54 } |
| OLD | NEW |