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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 305443004: Introduce HistoryClient interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@371825
Patch Set: Reupload with --no-find-copies Created 6 years, 6 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'browser', 8 'target_name': 'browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 21 matching lines...) Expand all
32 '../components/components.gyp:captive_portal', 32 '../components/components.gyp:captive_portal',
33 '../components/components.gyp:cloud_devices_common', 33 '../components/components.gyp:cloud_devices_common',
34 '../components/components.gyp:component_metrics_proto', 34 '../components/components.gyp:component_metrics_proto',
35 '../components/components.gyp:data_reduction_proxy_browser', 35 '../components/components.gyp:data_reduction_proxy_browser',
36 '../components/components.gyp:domain_reliability', 36 '../components/components.gyp:domain_reliability',
37 '../components/components.gyp:favicon_base', 37 '../components/components.gyp:favicon_base',
38 '../components/components.gyp:favicon_core', 38 '../components/components.gyp:favicon_core',
39 '../components/components.gyp:feedback_component', 39 '../components/components.gyp:feedback_component',
40 '../components/components.gyp:gcm_driver', 40 '../components/components.gyp:gcm_driver',
41 '../components/components.gyp:google_core_browser', 41 '../components/components.gyp:google_core_browser',
42 '../components/components.gyp:history_core_browser',
42 '../components/components.gyp:infobars_core', 43 '../components/components.gyp:infobars_core',
43 '../components/components.gyp:invalidation', 44 '../components/components.gyp:invalidation',
44 '../components/components.gyp:metrics', 45 '../components/components.gyp:metrics',
45 '../components/components.gyp:navigation_metrics', 46 '../components/components.gyp:navigation_metrics',
46 '../components/components.gyp:os_crypt', 47 '../components/components.gyp:os_crypt',
47 '../components/components.gyp:password_manager_core_browser', 48 '../components/components.gyp:password_manager_core_browser',
48 '../components/components.gyp:password_manager_core_common', 49 '../components/components.gyp:password_manager_core_common',
49 '../components/components.gyp:policy_component', 50 '../components/components.gyp:policy_component',
50 '../components/components.gyp:precache_core', 51 '../components/components.gyp:precache_core',
51 '../components/components.gyp:query_parser', 52 '../components/components.gyp:query_parser',
(...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after
768 'browser/history/android/sql_handler.cc', 769 'browser/history/android/sql_handler.cc',
769 'browser/history/android/sql_handler.h', 770 'browser/history/android/sql_handler.h',
770 'browser/history/android/sqlite_cursor.cc', 771 'browser/history/android/sqlite_cursor.cc',
771 'browser/history/android/sqlite_cursor.h', 772 'browser/history/android/sqlite_cursor.h',
772 'browser/history/android/urls_sql_handler.cc', 773 'browser/history/android/urls_sql_handler.cc',
773 'browser/history/android/urls_sql_handler.h', 774 'browser/history/android/urls_sql_handler.h',
774 'browser/history/android/visit_sql_handler.cc', 775 'browser/history/android/visit_sql_handler.cc',
775 'browser/history/android/visit_sql_handler.h', 776 'browser/history/android/visit_sql_handler.h',
776 'browser/history/archived_database.cc', 777 'browser/history/archived_database.cc',
777 'browser/history/archived_database.h', 778 'browser/history/archived_database.h',
779 'browser/history/chrome_history_client.cc',
780 'browser/history/chrome_history_client.h',
781 'browser/history/chrome_history_client_factory.cc',
782 'browser/history/chrome_history_client_factory.h',
778 'browser/history/delete_directive_handler.cc', 783 'browser/history/delete_directive_handler.cc',
779 'browser/history/delete_directive_handler.h', 784 'browser/history/delete_directive_handler.h',
780 'browser/history/download_database.cc', 785 'browser/history/download_database.cc',
781 'browser/history/download_database.h', 786 'browser/history/download_database.h',
782 'browser/history/download_row.cc', 787 'browser/history/download_row.cc',
783 'browser/history/download_row.h', 788 'browser/history/download_row.h',
784 'browser/history/expire_history_backend.cc', 789 'browser/history/expire_history_backend.cc',
785 'browser/history/expire_history_backend.h', 790 'browser/history/expire_history_backend.h',
786 'browser/history/history_backend.cc', 791 'browser/history/history_backend.cc',
787 'browser/history/history_backend.h', 792 'browser/history/history_backend.h',
(...skipping 2961 matching lines...) Expand 10 before | Expand all | Expand 10 after
3749 'package_name': 'org/chromium/chrome/browser', 3754 'package_name': 'org/chromium/chrome/browser',
3750 'template_deps': ['browser/android/tab_load_status.h'], 3755 'template_deps': ['browser/android/tab_load_status.h'],
3751 }, 3756 },
3752 'includes': [ '../build/android/java_cpp_template.gypi' ], 3757 'includes': [ '../build/android/java_cpp_template.gypi' ],
3753 }, 3758 },
3754 ], 3759 ],
3755 }, 3760 },
3756 ], 3761 ],
3757 ], 3762 ],
3758 } 3763 }
OLDNEW
« no previous file with comments | « chrome/browser/sync/profile_sync_service_typed_url_unittest.cc ('k') | chrome/test/base/testing_profile.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698