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

Side by Side Diff: content/content_browser.gypi

Issue 10915180: Make DownloadHistory observe manager, items (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: @r168573 Created 8 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 'conditions': [ 7 'conditions': [
8 ['chromeos==1', { 8 ['chromeos==1', {
9 'use_libgps%': 1, 9 'use_libgps%': 1,
10 }, { # chromeos==0 10 }, { # chromeos==0
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 'public/browser/devtools_manager.h', 75 'public/browser/devtools_manager.h',
76 'public/browser/dom_operation_notification_details.h', 76 'public/browser/dom_operation_notification_details.h',
77 'public/browser/dom_storage_context.h', 77 'public/browser/dom_storage_context.h',
78 'public/browser/download_destination_observer.h', 78 'public/browser/download_destination_observer.h',
79 'public/browser/download_interrupt_reason_values.h', 79 'public/browser/download_interrupt_reason_values.h',
80 'public/browser/download_interrupt_reasons.h', 80 'public/browser/download_interrupt_reasons.h',
81 'public/browser/download_item.h', 81 'public/browser/download_item.h',
82 'public/browser/download_manager.h', 82 'public/browser/download_manager.h',
83 'public/browser/download_manager_delegate.cc', 83 'public/browser/download_manager_delegate.cc',
84 'public/browser/download_manager_delegate.h', 84 'public/browser/download_manager_delegate.h',
85 'public/browser/download_persistent_store_info.cc',
86 'public/browser/download_persistent_store_info.h',
87 'public/browser/download_save_info.cc', 85 'public/browser/download_save_info.cc',
88 'public/browser/download_save_info.h', 86 'public/browser/download_save_info.h',
89 'public/browser/download_url_parameters.cc', 87 'public/browser/download_url_parameters.cc',
90 'public/browser/download_url_parameters.h', 88 'public/browser/download_url_parameters.h',
91 'public/browser/favicon_status.cc', 89 'public/browser/favicon_status.cc',
92 'public/browser/favicon_status.h', 90 'public/browser/favicon_status.h',
93 'public/browser/file_descriptor_info.h', 91 'public/browser/file_descriptor_info.h',
94 'public/browser/font_list_async.h', 92 'public/browser/font_list_async.h',
95 'public/browser/geolocation.h', 93 'public/browser/geolocation.h',
96 'public/browser/geolocation_permission_context.h', 94 'public/browser/geolocation_permission_context.h',
(...skipping 791 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 ] 886 ]
889 }], 887 }],
890 ['OS=="ios"', { 888 ['OS=="ios"', {
891 'sources/': [ 889 'sources/': [
892 # iOS only needs a small portion of content; exclude all the 890 # iOS only needs a small portion of content; exclude all the
893 # implementation, and re-include what is used. 891 # implementation, and re-include what is used.
894 ['exclude', '\\.(cc|mm)$'], 892 ['exclude', '\\.(cc|mm)$'],
895 ['include', '_ios\\.(cc|mm)$'], 893 ['include', '_ios\\.(cc|mm)$'],
896 ['include', '^public/browser/browser_main_parts\\.cc$'], 894 ['include', '^public/browser/browser_main_parts\\.cc$'],
897 ['include', '^public/browser/content_browser_client\\.cc$'], 895 ['include', '^public/browser/content_browser_client\\.cc$'],
898 ['include', '^public/browser/download_persistent_store_info\\.cc$'],
899 ['include', '^public/browser/favicon_status\\.cc$'], 896 ['include', '^public/browser/favicon_status\\.cc$'],
900 ['include', '^public/browser/navigation_details\\.cc$'], 897 ['include', '^public/browser/navigation_details\\.cc$'],
901 ['include', '^public/browser/notification_registrar\\.cc$'], 898 ['include', '^public/browser/notification_registrar\\.cc$'],
902 ['include', '^public/browser/page_navigator\\.cc$'], 899 ['include', '^public/browser/page_navigator\\.cc$'],
903 ['include', '^public/browser/speech_recognition_'], 900 ['include', '^public/browser/speech_recognition_'],
904 ['include', '^public/browser/web_ui_controller\\.cc'], 901 ['include', '^public/browser/web_ui_controller\\.cc'],
905 ['include', '^browser/browser_context\\.cc$'], 902 ['include', '^browser/browser_context\\.cc$'],
906 ['include', '^browser/browser_main_loop\\.cc$'], 903 ['include', '^browser/browser_main_loop\\.cc$'],
907 ['include', '^browser/browser_main_runner\\.cc$'], 904 ['include', '^browser/browser_main_runner\\.cc$'],
908 ['include', '^browser/browser_process_sub_thread\\.cc$'], 905 ['include', '^browser/browser_process_sub_thread\\.cc$'],
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
1138 # the USE_LIBGPS setting propagates to the "real" dependent target, 1135 # the USE_LIBGPS setting propagates to the "real" dependent target,
1139 # we use all_dependent_settings here. 1136 # we use all_dependent_settings here.
1140 'all_dependent_settings': { 1137 'all_dependent_settings': {
1141 'defines': [ 1138 'defines': [
1142 'USE_LIBGPS', 1139 'USE_LIBGPS',
1143 ], 1140 ],
1144 }, 1141 },
1145 }], 1142 }],
1146 ], 1143 ],
1147 } 1144 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698