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

Side by Side Diff: components/signin/core/browser/BUILD.gn

Issue 2010463002: Mocker for OSCrypt (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated doc Created 4 years, 6 months 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 if (is_android) { 5 if (is_android) {
6 import("//build/config/android/rules.gni") 6 import("//build/config/android/rules.gni")
7 } 7 }
8 8
9 source_set("browser") { 9 source_set("browser") {
10 sources = [ 10 sources = [
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 "gaia_cookie_manager_service_unittest.cc", 145 "gaia_cookie_manager_service_unittest.cc",
146 "refresh_token_annotation_request_unittest.cc", 146 "refresh_token_annotation_request_unittest.cc",
147 "signin_error_controller_unittest.cc", 147 "signin_error_controller_unittest.cc",
148 "signin_investigator_unittest.cc", 148 "signin_investigator_unittest.cc",
149 "signin_status_metrics_provider_unittest.cc", 149 "signin_status_metrics_provider_unittest.cc",
150 "webdata/token_service_table_unittest.cc", 150 "webdata/token_service_table_unittest.cc",
151 ] 151 ]
152 152
153 deps = [ 153 deps = [
154 ":test_support", 154 ":test_support",
155 "//components/os_crypt:os_crypt", 155 "//components/os_crypt:test_support",
156 "//components/signin/core/common", 156 "//components/signin/core/common",
157 "//testing/gmock", 157 "//testing/gmock",
158 ] 158 ]
159 159
160 if (is_chromeos) { 160 if (is_chromeos) {
161 sources -= [ "signin_status_metrics_provider_unittest.cc" ] 161 sources -= [ "signin_status_metrics_provider_unittest.cc" ]
162 } 162 }
163 } 163 }
164 164
165 if (is_android) { 165 if (is_android) {
166 # GYP: //component/signin.gypi:investigated_scenario_java 166 # GYP: //component/signin.gypi:investigated_scenario_java
167 java_cpp_enum("investigated_scenario_java") { 167 java_cpp_enum("investigated_scenario_java") {
168 sources = [ 168 sources = [
169 "signin_investigator.h", 169 "signin_investigator.h",
170 ] 170 ]
171 } 171 }
172 } 172 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698