Chromium Code Reviews| 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 "main.cc", | 11 "main.cc", |
| 12 ] | 12 ] |
| 13 | 13 |
| 14 deps = [ | 14 deps = [ |
| 15 ":lib", | 15 ":lib", |
| 16 "//mojo/application", | 16 "//mojo/application", |
| 17 ] | 17 ] |
| 18 } | 18 } |
| 19 | 19 |
| 20 # Library that allows to include the service code directly into the embedding | |
|
viettrungluu
2016/05/19 20:30:38
"... that allows the service code to be included d
nelly
2016/05/20 08:59:22
Done.
| |
| 21 # shell. Used by https://manganese.googlesource.com/. | |
| 20 source_set("lib") { | 22 source_set("lib") { |
| 21 sources = [ | 23 sources = [ |
| 22 "authenticating_url_loader_interceptor.cc", | 24 "authenticating_url_loader_interceptor.cc", |
| 23 "authenticating_url_loader_interceptor.h", | 25 "authenticating_url_loader_interceptor.h", |
| 24 "authenticating_url_loader_interceptor_app.cc", | 26 "authenticating_url_loader_interceptor_app.cc", |
| 25 "authenticating_url_loader_interceptor_app.h", | 27 "authenticating_url_loader_interceptor_app.h", |
| 26 "authenticating_url_loader_interceptor_factory.cc", | 28 "authenticating_url_loader_interceptor_factory.cc", |
| 27 "authenticating_url_loader_interceptor_factory.h", | 29 "authenticating_url_loader_interceptor_factory.h", |
| 28 "authenticating_url_loader_interceptor_meta_factory_impl.cc", | 30 "authenticating_url_loader_interceptor_meta_factory_impl.cc", |
| 29 "authenticating_url_loader_interceptor_meta_factory_impl.h", | 31 "authenticating_url_loader_interceptor_meta_factory_impl.h", |
| (...skipping 26 matching lines...) Expand all Loading... | |
| 56 "//mojo/application", | 58 "//mojo/application", |
| 57 "//mojo/application:test_support", | 59 "//mojo/application:test_support", |
| 58 "//mojo/public/cpp/application", | 60 "//mojo/public/cpp/application", |
| 59 "//mojo/public/cpp/bindings", | 61 "//mojo/public/cpp/bindings", |
| 60 "//mojo/public/cpp/system", | 62 "//mojo/public/cpp/system", |
| 61 "//mojo/services/authenticating_url_loader_interceptor/interfaces", | 63 "//mojo/services/authenticating_url_loader_interceptor/interfaces", |
| 62 "//mojo/services/network/interfaces", | 64 "//mojo/services/network/interfaces", |
| 63 "//testing/gtest", | 65 "//testing/gtest", |
| 64 ] | 66 ] |
| 65 } | 67 } |
| OLD | NEW |