Chromium Code Reviews| 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'signin_core_common', | 8 'target_name': 'signin_core_common', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'include_dirs': [ | 10 'include_dirs': [ |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 46 'signin/core/browser/signin_internals_util.h', | 46 'signin/core/browser/signin_internals_util.h', |
| 47 'signin/core/browser/signin_manager_base.cc', | 47 'signin/core/browser/signin_manager_base.cc', |
| 48 'signin/core/browser/signin_manager_base.h', | 48 'signin/core/browser/signin_manager_base.h', |
| 49 'signin/core/browser/signin_manager_cookie_helper.cc', | 49 'signin/core/browser/signin_manager_cookie_helper.cc', |
| 50 'signin/core/browser/signin_manager_cookie_helper.h', | 50 'signin/core/browser/signin_manager_cookie_helper.h', |
| 51 'signin/core/browser/webdata/token_service_table.cc', | 51 'signin/core/browser/webdata/token_service_table.cc', |
| 52 'signin/core/browser/webdata/token_service_table.h', | 52 'signin/core/browser/webdata/token_service_table.h', |
| 53 'signin/core/browser/webdata/token_web_data.cc', | 53 'signin/core/browser/webdata/token_web_data.cc', |
| 54 'signin/core/browser/webdata/token_web_data.h', | 54 'signin/core/browser/webdata/token_web_data.h', |
| 55 ], | 55 ], |
| 56 'conditions': [ | |
| 57 ['OS=="android"', { | |
| 58 'sources!': [ | |
| 59 # Not used on Android. | |
| 60 'signin/core/browser/mutable_profile_oauth2_token_service.cc', | |
| 61 'signin/core/browser/mutable_profile_oauth2_token_service.h', | |
|
droger
2014/03/28 12:37:11
Indentation.
blundell
2014/03/28 18:03:04
Done.
| |
| 62 ], | |
| 63 }], | |
| 64 ], | |
| 65 }, | |
| 66 { | |
| 67 'target_name': 'signin_core_browser_test_support', | |
| 68 'type': 'static_library', | |
| 69 'dependencies': [ | |
| 70 'signin_core_browser', | |
| 71 ], | |
| 72 'include_dirs': [ | |
| 73 '..', | |
| 74 ], | |
| 75 'sources': [ | |
| 76 'signin/core/browser/fake_auth_status_provider.cc', | |
| 77 'signin/core/browser/fake_auth_status_provider.h', | |
| 78 ], | |
| 56 }, | 79 }, |
| 57 ], | 80 ], |
| 58 'conditions': [ | |
| 59 ['OS=="android"', { | |
| 60 'sources!': [ | |
| 61 # Not used on Android. | |
| 62 'signin/core/browser/mutable_profile_oauth2_token_service.cc', | |
| 63 'signin/core/browser/mutable_profile_oauth2_token_service.h', | |
| 64 ], | |
| 65 }], | |
| 66 ], | |
| 67 } | 81 } |
| OLD | NEW |