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("//chromecast/chromecast.gni") | 5 import("//chromecast/chromecast.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 source_set("browser") { | 8 source_set("browser") { |
9 sources = [ | 9 sources = [ |
10 "cast_browser_context.cc", | 10 "cast_browser_context.cc", |
(...skipping 25 matching lines...) Expand all Loading... |
36 "devtools/remote_debugging_server.cc", | 36 "devtools/remote_debugging_server.cc", |
37 "devtools/remote_debugging_server.h", | 37 "devtools/remote_debugging_server.h", |
38 "geolocation/cast_access_token_store.cc", | 38 "geolocation/cast_access_token_store.cc", |
39 "geolocation/cast_access_token_store.h", | 39 "geolocation/cast_access_token_store.h", |
40 "metrics/cast_metrics_prefs.cc", | 40 "metrics/cast_metrics_prefs.cc", |
41 "metrics/cast_metrics_prefs.h", | 41 "metrics/cast_metrics_prefs.h", |
42 "metrics/cast_metrics_service_client.cc", | 42 "metrics/cast_metrics_service_client.cc", |
43 "metrics/cast_metrics_service_client.h", | 43 "metrics/cast_metrics_service_client.h", |
44 "metrics/cast_stability_metrics_provider.cc", | 44 "metrics/cast_stability_metrics_provider.cc", |
45 "metrics/cast_stability_metrics_provider.h", | 45 "metrics/cast_stability_metrics_provider.h", |
46 "metrics/platform_metrics_providers.h", | |
47 "pref_service_helper.cc", | 46 "pref_service_helper.cc", |
48 "pref_service_helper.h", | 47 "pref_service_helper.h", |
49 "service/cast_service.cc", | 48 "service/cast_service.cc", |
50 "service/cast_service.h", | 49 "service/cast_service.h", |
51 "service/cast_service_android.cc", | 50 "service/cast_service_android.cc", |
52 "service/cast_service_android.h", | 51 "service/cast_service_android.h", |
53 "url_request_context_factory.cc", | 52 "url_request_context_factory.cc", |
54 "url_request_context_factory.h", | 53 "url_request_context_factory.h", |
55 ] | 54 ] |
56 | 55 |
57 if (chromecast_branding == "public") { | 56 if (chromecast_branding == "public") { |
58 sources += [ | 57 sources += [ |
59 "cast_content_browser_client_simple.cc", | 58 "cast_content_browser_client_simple.cc", |
60 "cast_network_delegate_simple.cc", | 59 "cast_network_delegate_simple.cc", |
61 "devtools/remote_debugging_server_simple.cc", | 60 "devtools/remote_debugging_server_simple.cc", |
62 "pref_service_helper_simple.cc", | 61 "pref_service_helper_simple.cc", |
63 ] | 62 ] |
64 | 63 |
65 if (!is_android) { | 64 if (!is_android) { |
66 sources += [ | 65 sources += [ |
67 "metrics/platform_metrics_providers_simple.cc", | |
68 "service/cast_service_simple.cc", | 66 "service/cast_service_simple.cc", |
69 "service/cast_service_simple.h", | 67 "service/cast_service_simple.h", |
70 ] | 68 ] |
71 } | 69 } |
72 } | 70 } |
73 | 71 |
74 deps = [ | 72 deps = [ |
75 "//base", | 73 "//base", |
76 "//base:prefs", | 74 "//base:prefs", |
77 "//base:i18n", | 75 "//base:i18n", |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 | 153 |
156 configs += [ ":browser_test_config" ] | 154 configs += [ ":browser_test_config" ] |
157 | 155 |
158 deps = [ | 156 deps = [ |
159 ":test_support", | 157 ":test_support", |
160 "//base", | 158 "//base", |
161 "//testing/gtest", | 159 "//testing/gtest", |
162 "//url", | 160 "//url", |
163 ] | 161 ] |
164 } | 162 } |
OLD | NEW |