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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 586913002: Add BookmarkUndoService to Android build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rearrange gypi Created 6 years, 3 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 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 2148 matching lines...) Expand 10 before | Expand all | Expand 10 after
2159 'browser/sync/glue/extension_data_type_controller.h', 2159 'browser/sync/glue/extension_data_type_controller.h',
2160 'browser/sync/glue/extension_setting_data_type_controller.cc', 2160 'browser/sync/glue/extension_setting_data_type_controller.cc',
2161 'browser/sync/glue/extension_setting_data_type_controller.h', 2161 'browser/sync/glue/extension_setting_data_type_controller.h',
2162 'browser/sync/glue/synced_tab_delegate.cc', 2162 'browser/sync/glue/synced_tab_delegate.cc',
2163 'browser/sync/profile_sync_service_base.cc', 2163 'browser/sync/profile_sync_service_base.cc',
2164 'browser/sync/profile_sync_service_base.h', 2164 'browser/sync/profile_sync_service_base.h',
2165 'browser/sync/sync_ui_util.cc', 2165 'browser/sync/sync_ui_util.cc',
2166 'browser/sync/sync_ui_util.h', 2166 'browser/sync/sync_ui_util.h',
2167 'browser/tab_contents/background_contents.cc', 2167 'browser/tab_contents/background_contents.cc',
2168 'browser/tab_contents/background_contents.h', 2168 'browser/tab_contents/background_contents.h',
2169 'browser/undo/bookmark_undo_service.cc',
2170 'browser/undo/bookmark_undo_service_factory.cc',
2171 'browser/undo/bookmark_undo_service_factory.h',
2172 'browser/undo/bookmark_undo_service.h',
2173 'browser/undo/bookmark_undo_utils.cc',
2174 'browser/undo/bookmark_undo_utils.h',
2175 'browser/undo/undo_manager.cc',
2176 'browser/undo/undo_manager.h',
2177 ], 2169 ],
2178 # Cross-platform Aura files. 2170 # Cross-platform Aura files.
2179 'chrome_browser_aura_sources': [ 2171 'chrome_browser_aura_sources': [
2180 # This file is called _views but has aura calls in it. 2172 # This file is called _views but has aura calls in it.
2181 'browser/download/drag_download_item_views.cc', 2173 'browser/download/drag_download_item_views.cc',
2182 'browser/lifetime/application_lifetime_aura.cc', 2174 'browser/lifetime/application_lifetime_aura.cc',
2183 'browser/platform_util_aura.cc', 2175 'browser/platform_util_aura.cc',
2184 ], 2176 ],
2185 # Cross-platform Ash sources. 2177 # Cross-platform Ash sources.
2186 'chrome_browser_ash_sources': [ 2178 'chrome_browser_ash_sources': [
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
2317 'browser/supervised_user/supervised_user_sync_service.h', 2309 'browser/supervised_user/supervised_user_sync_service.h',
2318 'browser/supervised_user/supervised_user_sync_service_factory.cc', 2310 'browser/supervised_user/supervised_user_sync_service_factory.cc',
2319 'browser/supervised_user/supervised_user_sync_service_factory.h', 2311 'browser/supervised_user/supervised_user_sync_service_factory.h',
2320 'browser/supervised_user/supervised_user_sync_service_observer.h', 2312 'browser/supervised_user/supervised_user_sync_service_observer.h',
2321 'browser/supervised_user/supervised_user_theme.cc', 2313 'browser/supervised_user/supervised_user_theme.cc',
2322 'browser/supervised_user/supervised_user_theme.h', 2314 'browser/supervised_user/supervised_user_theme.h',
2323 'browser/supervised_user/supervised_user_url_filter.cc', 2315 'browser/supervised_user/supervised_user_url_filter.cc',
2324 'browser/supervised_user/supervised_user_url_filter.h', 2316 'browser/supervised_user/supervised_user_url_filter.h',
2325 'browser/supervised_user/supervised_users.h', 2317 'browser/supervised_user/supervised_users.h',
2326 ], 2318 ],
2319 'chrome_browser_undo_sources': [
2320 'browser/undo/bookmark_undo_service.cc',
2321 'browser/undo/bookmark_undo_service_factory.cc',
2322 'browser/undo/bookmark_undo_service_factory.h',
2323 'browser/undo/bookmark_undo_service.h',
2324 'browser/undo/bookmark_undo_utils.cc',
2325 'browser/undo/bookmark_undo_utils.h',
2326 'browser/undo/undo_manager.cc',
2327 'browser/undo/undo_manager.h',
2328 ],
2327 'chrome_browser_webrtc_sources': [ 2329 'chrome_browser_webrtc_sources': [
2328 # TODO(brettw) should webrtc_log_list.cc go here? 2330 # TODO(brettw) should webrtc_log_list.cc go here?
2329 'browser/media/webrtc_log_uploader.cc', 2331 'browser/media/webrtc_log_uploader.cc',
2330 'browser/media/webrtc_log_uploader.h', 2332 'browser/media/webrtc_log_uploader.h',
2331 'browser/media/webrtc_log_util.cc', 2333 'browser/media/webrtc_log_util.cc',
2332 'browser/media/webrtc_log_util.h', 2334 'browser/media/webrtc_log_util.h',
2333 'browser/media/webrtc_logging_handler_host.cc', 2335 'browser/media/webrtc_logging_handler_host.cc',
2334 'browser/media/webrtc_logging_handler_host.h', 2336 'browser/media/webrtc_logging_handler_host.h',
2335 'browser/media/webrtc_rtp_dump_handler.cc', 2337 'browser/media/webrtc_rtp_dump_handler.cc',
2336 'browser/media/webrtc_rtp_dump_handler.h', 2338 'browser/media/webrtc_rtp_dump_handler.h',
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
2874 # Needed by chrome_content_renderer_client.cc. & 2876 # Needed by chrome_content_renderer_client.cc. &
2875 # plugin_info_message_filter.cc. 2877 # plugin_info_message_filter.cc.
2876 '<(SHARED_INTERMEDIATE_DIR)', 2878 '<(SHARED_INTERMEDIATE_DIR)',
2877 ], 2879 ],
2878 'export_dependent_settings': [ 2880 'export_dependent_settings': [
2879 '../components/components.gyp:autofill_core_browser', 2881 '../components/components.gyp:autofill_core_browser',
2880 '../content/content.gyp:content_browser', 2882 '../content/content.gyp:content_browser',
2881 '../sql/sql.gyp:sql', 2883 '../sql/sql.gyp:sql',
2882 '../sync/sync.gyp:sync', 2884 '../sync/sync.gyp:sync',
2883 ], 2885 ],
2886 # sources applied to all configurations
2887 'sources': [
2888 '<@(chrome_browser_undo_sources)',
2889 ],
2884 'conditions': [ 2890 'conditions': [
2885 ['OS != "ios"', { 2891 ['OS != "ios"', {
2886 'dependencies': [ 2892 'dependencies': [
2887 'apps', 2893 'apps',
2888 'browser/extensions/api/api_registration.gyp:chrome_api_registration ', 2894 'browser/extensions/api/api_registration.gyp:chrome_api_registration ',
2889 'common/extensions/api/api.gyp:chrome_api', 2895 'common/extensions/api/api.gyp:chrome_api',
2890 'debugger', 2896 'debugger',
2891 'installer_util', 2897 'installer_util',
2892 '../third_party/re2/re2.gyp:re2', 2898 '../third_party/re2/re2.gyp:re2',
2893 '../cc/cc.gyp:cc', 2899 '../cc/cc.gyp:cc',
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after
3568 'variables': { 3574 'variables': {
3569 'proto_in_dir': 'browser/sync_file_system/drive_backend', 3575 'proto_in_dir': 'browser/sync_file_system/drive_backend',
3570 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', 3576 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend',
3571 }, 3577 },
3572 'includes': [ '../build/protoc.gypi' ] 3578 'includes': [ '../build/protoc.gypi' ]
3573 }, 3579 },
3574 ], 3580 ],
3575 },], 3581 },],
3576 ], 3582 ],
3577 } 3583 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698