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 source_set("application_manager") { | 8 source_set("application_manager") { |
9 output_name = "mojo_application_manager" | 9 output_name = "mojo_application_manager" |
10 sources = [ | 10 sources = [ |
(...skipping 11 matching lines...) Expand all Loading... |
22 "native_application_options.h", | 22 "native_application_options.h", |
23 "native_runner.h", | 23 "native_runner.h", |
24 "network_fetcher.cc", | 24 "network_fetcher.cc", |
25 "network_fetcher.h", | 25 "network_fetcher.h", |
26 "query_util.cc", | 26 "query_util.cc", |
27 "query_util.h", | 27 "query_util.h", |
28 "shell_impl.cc", | 28 "shell_impl.cc", |
29 "shell_impl.h", | 29 "shell_impl.h", |
30 ] | 30 ] |
31 | 31 |
| 32 # TODO(toshik): FNL hasn't supported authentication, yet |
| 33 if (is_fnl) { |
| 34 defines = [ "NO_AUTHENTICATION" ] |
| 35 } |
| 36 |
32 public_deps = [ | 37 public_deps = [ |
33 "//base", | 38 "//base", |
34 "//mojo/converters/url", | 39 "//mojo/converters/url", |
35 "//mojo/data_pipe_utils", | 40 "//mojo/data_pipe_utils", |
36 "//mojo/public/interfaces/application:application", | 41 "//mojo/public/interfaces/application:application", |
37 "//mojo/services/authenticating_url_loader_interceptor/interfaces", | 42 "//mojo/services/authenticating_url_loader_interceptor/interfaces", |
38 "//mojo/services/authentication/interfaces", | 43 "//mojo/services/authentication/interfaces", |
39 "//mojo/services/network/interfaces", | 44 "//mojo/services/network/interfaces", |
40 "//mojo/services/url_response_disk_cache/interfaces", | 45 "//mojo/services/url_response_disk_cache/interfaces", |
41 "//url", | 46 "//url", |
(...skipping 28 matching lines...) Expand all Loading... |
70 "//testing/gtest", | 75 "//testing/gtest", |
71 "//url", | 76 "//url", |
72 ] | 77 ] |
73 } | 78 } |
74 | 79 |
75 mojom("test_bindings") { | 80 mojom("test_bindings") { |
76 sources = [ | 81 sources = [ |
77 "test.mojom", | 82 "test.mojom", |
78 ] | 83 ] |
79 } | 84 } |
OLD | NEW |