Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(400)

Side by Side Diff: services/BUILD.gn

Issue 1466733002: Google OAuth Device Flow support for FNL (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Refactored google_auth_service into sub components Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 group("services") { 5 group("services") {
6 testonly = true 6 testonly = true
7 7
8 deps = [ 8 deps = [
9 ":tests", 9 ":tests",
10 "//services/asset_bundle", 10 "//services/asset_bundle",
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 deps = [ 78 deps = [
79 "//services/asset_bundle:apptests", 79 "//services/asset_bundle:apptests",
80 "//services/authenticating_url_loader_interceptor:apptests", 80 "//services/authenticating_url_loader_interceptor:apptests",
81 "//services/clipboard:apptests", 81 "//services/clipboard:apptests",
82 "//services/dart/dart_apptests", 82 "//services/dart/dart_apptests",
83 "//services/http_server:apptests", 83 "//services/http_server:apptests",
84 "//services/native_support:apptests", 84 "//services/native_support:apptests",
85 "//services/prediction:apptests", 85 "//services/prediction:apptests",
86 ] 86 ]
87 87
88 if (!is_android) {
89 deps += [ "//services/authentication:apptests" ]
90 }
91
88 if (is_linux && !is_fnl) { 92 if (is_linux && !is_fnl) {
89 deps += [ "//services/python:python_apptests" ] 93 deps += [ "//services/python:python_apptests" ]
90 } 94 }
91 95
92 if (is_android) { 96 if (is_android) {
93 deps += [ "//services/contacts:apptests" ] 97 deps += [ "//services/contacts:apptests" ]
94 deps += [ "//services/notifications:apptests" ] 98 deps += [ "//services/notifications:apptests" ]
95 } 99 }
96 100
97 if (is_linux || is_android) { 101 if (is_linux || is_android) {
(...skipping 13 matching lines...) Expand all
111 if (is_android || is_linux) { 115 if (is_android || is_linux) {
112 deps += [ 116 deps += [
113 "//services/files:apptests", 117 "//services/files:apptests",
114 "//services/url_response_disk_cache:tests", 118 "//services/url_response_disk_cache:tests",
115 "//services/view_manager:mojo_view_manager_client_apptests", 119 "//services/view_manager:mojo_view_manager_client_apptests",
116 "//services/view_manager:view_manager_service_apptests", 120 "//services/view_manager:view_manager_service_apptests",
117 "//services/view_manager:view_manager_service_unittests", 121 "//services/view_manager:view_manager_service_unittests",
118 ] 122 ]
119 } 123 }
120 } 124 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698