| 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 static_library("browser") { | 5 static_library("browser") { |
| 6 sources = [ | 6 sources = [ |
| 7 "about_signin_internals.cc", | 7 "about_signin_internals.cc", |
| 8 "about_signin_internals.h", | 8 "about_signin_internals.h", |
| 9 "account_reconcilor.cc", | 9 "account_reconcilor.cc", |
| 10 "account_reconcilor.h", | 10 "account_reconcilor.h", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 ] | 54 ] |
| 55 | 55 |
| 56 if (is_android) { | 56 if (is_android) { |
| 57 sources -= [ | 57 sources -= [ |
| 58 "mutable_profile_oauth2_token_service.cc", | 58 "mutable_profile_oauth2_token_service.cc", |
| 59 "mutable_profile_oauth2_token_service.h", | 59 "mutable_profile_oauth2_token_service.h", |
| 60 ] | 60 ] |
| 61 } | 61 } |
| 62 | 62 |
| 63 if (is_chromeos) { | 63 if (is_chromeos) { |
| 64 sources -= [ | 64 sources -= [ "signin_manager.cc" ] |
| 65 "signin_manager.cc", | |
| 66 ] | |
| 67 } | 65 } |
| 68 | 66 |
| 69 if (is_win) { | 67 if (is_win) { |
| 70 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 68 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 71 cflags = [ "/wd4267" ] | 69 cflags = [ "/wd4267" ] |
| 72 } | 70 } |
| 73 } | 71 } |
| 74 | 72 |
| 75 static_library("test_support") { | 73 static_library("test_support") { |
| 76 testonly = true | 74 testonly = true |
| 77 sources = [ | 75 sources = [ |
| 78 "fake_auth_status_provider.cc", | 76 "fake_auth_status_provider.cc", |
| 79 "fake_auth_status_provider.h", | 77 "fake_auth_status_provider.h", |
| 80 "test_signin_client.cc", | 78 "test_signin_client.cc", |
| 81 "test_signin_client.h", | 79 "test_signin_client.h", |
| 82 ] | 80 ] |
| 83 | 81 |
| 84 deps = [ | 82 deps = [ |
| 85 ":browser", | 83 ":browser", |
| 86 "//testing/gtest", | 84 "//testing/gtest", |
| 87 ] | 85 ] |
| 88 } | 86 } |
| OLD | NEW |