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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 27047003: Precache tracking database (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@precache
Patch Set: General fixes, added tests, and moved PrecacheManager into component Created 7 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
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 10 matching lines...) Expand all
21 'chrome_resources.gyp:theme_resources', 21 'chrome_resources.gyp:theme_resources',
22 'common', 22 'common',
23 'common_net', 23 'common_net',
24 'feedback_proto', 24 'feedback_proto',
25 'in_memory_url_index_cache_proto', 25 'in_memory_url_index_cache_proto',
26 'probe_message_proto', 26 'probe_message_proto',
27 'safe_browsing_proto', 27 'safe_browsing_proto',
28 'safe_browsing_report_proto', 28 'safe_browsing_report_proto',
29 '../components/components.gyp:browser_context_keyed_service', 29 '../components/components.gyp:browser_context_keyed_service',
30 '../components/components.gyp:encryptor', 30 '../components/components.gyp:encryptor',
31 '../components/components.gyp:precache',
31 '../components/components.gyp:sessions', 32 '../components/components.gyp:sessions',
32 '../components/components.gyp:startup_metric_utils', 33 '../components/components.gyp:startup_metric_utils',
33 '../components/components.gyp:translate_common', 34 '../components/components.gyp:translate_common',
34 '../components/components.gyp:user_prefs', 35 '../components/components.gyp:user_prefs',
35 # This depends directly on the variations target, rather than just 36 # This depends directly on the variations target, rather than just
36 # transitively via the common target because the proto sources need to 37 # transitively via the common target because the proto sources need to
37 # be generated before code in this target can start building. 38 # be generated before code in this target can start building.
38 '../components/components.gyp:variations', 39 '../components/components.gyp:variations',
39 '../components/components.gyp:visitedlink_browser', 40 '../components/components.gyp:visitedlink_browser',
40 '../components/components.gyp:visitedlink_common', 41 '../components/components.gyp:visitedlink_common',
(...skipping 754 matching lines...) Expand 10 before | Expand all | Expand 10 after
795 'browser/history/in_memory_database.cc', 796 'browser/history/in_memory_database.cc',
796 'browser/history/in_memory_database.h', 797 'browser/history/in_memory_database.h',
797 'browser/history/in_memory_history_backend.cc', 798 'browser/history/in_memory_history_backend.cc',
798 'browser/history/in_memory_history_backend.h', 799 'browser/history/in_memory_history_backend.h',
799 'browser/history/in_memory_url_index.cc', 800 'browser/history/in_memory_url_index.cc',
800 'browser/history/in_memory_url_index.h', 801 'browser/history/in_memory_url_index.h',
801 'browser/history/in_memory_url_index_types.cc', 802 'browser/history/in_memory_url_index_types.cc',
802 'browser/history/in_memory_url_index_types.h', 803 'browser/history/in_memory_url_index_types.h',
803 'browser/history/most_visited_tiles_experiment.cc', 804 'browser/history/most_visited_tiles_experiment.cc',
804 'browser/history/most_visited_tiles_experiment.h', 805 'browser/history/most_visited_tiles_experiment.h',
806 'browser/history/most_visited_urls_provider.cc',
807 'browser/history/most_visited_urls_provider.h',
805 'browser/history/page_collector.cc', 808 'browser/history/page_collector.cc',
806 'browser/history/page_collector.h', 809 'browser/history/page_collector.h',
807 'browser/history/page_usage_data.cc', 810 'browser/history/page_usage_data.cc',
808 'browser/history/page_usage_data.h', 811 'browser/history/page_usage_data.h',
809 'browser/history/query_parser.cc', 812 'browser/history/query_parser.cc',
810 'browser/history/query_parser.h', 813 'browser/history/query_parser.h',
811 'browser/history/scored_history_match.cc', 814 'browser/history/scored_history_match.cc',
812 'browser/history/scored_history_match.h', 815 'browser/history/scored_history_match.h',
813 'browser/history/select_favicon_frames.cc', 816 'browser/history/select_favicon_frames.cc',
814 'browser/history/select_favicon_frames.h', 817 'browser/history/select_favicon_frames.h',
(...skipping 2876 matching lines...) Expand 10 before | Expand all | Expand 10 after
3691 'package_name': 'org/chromium/chrome/browser/ui/toolbar', 3694 'package_name': 'org/chromium/chrome/browser/ui/toolbar',
3692 'template_deps': ['browser/ui/toolbar/toolbar_model_security_level_l ist.h'], 3695 'template_deps': ['browser/ui/toolbar/toolbar_model_security_level_l ist.h'],
3693 }, 3696 },
3694 'includes': [ '../build/android/java_cpp_template.gypi' ], 3697 'includes': [ '../build/android/java_cpp_template.gypi' ],
3695 }, 3698 },
3696 ], 3699 ],
3697 }, 3700 },
3698 ], 3701 ],
3699 ], 3702 ],
3700 } 3703 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698