OLD | NEW |
1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 2012 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 'variables': { | 6 'variables': { |
7 # All .cc, .h, .m, and .mm files under browser except for: | 7 # All .cc, .h, .m, and .mm files under browser except for: |
8 # * tests and mocks. | 8 # * tests and mocks. |
9 # * code below browser/chromeos | 9 # * code below browser/chromeos |
10 # * code below browser/extensions | 10 # * code below browser/extensions |
(...skipping 815 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
826 ], | 826 ], |
827 # Everything but Android, iOS, and CrOS. | 827 # Everything but Android, iOS, and CrOS. |
828 'chrome_browser_desktop_sources': [ | 828 'chrome_browser_desktop_sources': [ |
829 'browser/platform_util.cc', | 829 'browser/platform_util.cc', |
830 'browser/profiles/avatar_menu_actions_desktop.cc', | 830 'browser/profiles/avatar_menu_actions_desktop.cc', |
831 'browser/profiles/avatar_menu_actions_desktop.h', | 831 'browser/profiles/avatar_menu_actions_desktop.h', |
832 'browser/profiles/avatar_menu_desktop.cc', | 832 'browser/profiles/avatar_menu_desktop.cc', |
833 'browser/profiles/avatar_menu_observer.h', | 833 'browser/profiles/avatar_menu_observer.h', |
834 'browser/profiles/profile_list_desktop.cc', | 834 'browser/profiles/profile_list_desktop.cc', |
835 'browser/profiles/profile_list_desktop.h', | 835 'browser/profiles/profile_list_desktop.h', |
| 836 'browser/signin/cross_device_promo.cc', |
| 837 'browser/signin/cross_device_promo.h', |
| 838 'browser/signin/cross_device_promo_factory.cc', |
| 839 'browser/signin/cross_device_promo_factory.h', |
836 ], | 840 ], |
837 # Miscellaneous files that were brought up on iOS before the decision not | 841 # Miscellaneous files that were brought up on iOS before the decision not |
838 # to use chrome/ for iOS. These, plus a few of the directory-specific | 842 # to use chrome/ for iOS. These, plus a few of the directory-specific |
839 # source lists below, are all that are built on iOS. These are built | 843 # source lists below, are all that are built on iOS. These are built |
840 # despite the change in direction in order to prevent iOS regressions while | 844 # despite the change in direction in order to prevent iOS regressions while |
841 # componentization is in progress. | 845 # componentization is in progress. |
842 # TODO(stuartmorgan): Remove this once enough has been componentized that | 846 # TODO(stuartmorgan): Remove this once enough has been componentized that |
843 # there's no value in building any of chrome/ for iOS. | 847 # there's no value in building any of chrome/ for iOS. |
844 'chrome_browser_ios_sources': [ | 848 'chrome_browser_ios_sources': [ |
845 'browser/browser_process.cc', | 849 'browser/browser_process.cc', |
(...skipping 3043 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3889 'variables': { | 3893 'variables': { |
3890 'proto_in_dir': 'browser/sync_file_system/drive_backend', | 3894 'proto_in_dir': 'browser/sync_file_system/drive_backend', |
3891 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', | 3895 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', |
3892 }, | 3896 }, |
3893 'includes': [ '../build/protoc.gypi' ] | 3897 'includes': [ '../build/protoc.gypi' ] |
3894 }, | 3898 }, |
3895 ], | 3899 ], |
3896 },], | 3900 },], |
3897 ], | 3901 ], |
3898 } | 3902 } |
OLD | NEW |