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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 849323002: Componentize HistoryDatabase (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix android compilation Created 5 years, 11 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 1475 matching lines...) Expand 10 before | Expand all | Expand 10 after
1486 'browser/history/chrome_history_client.h', 1486 'browser/history/chrome_history_client.h',
1487 'browser/history/chrome_history_client_factory.cc', 1487 'browser/history/chrome_history_client_factory.cc',
1488 'browser/history/chrome_history_client_factory.h', 1488 'browser/history/chrome_history_client_factory.h',
1489 'browser/history/delete_directive_handler.cc', 1489 'browser/history/delete_directive_handler.cc',
1490 'browser/history/delete_directive_handler.h', 1490 'browser/history/delete_directive_handler.h',
1491 'browser/history/expire_history_backend.cc', 1491 'browser/history/expire_history_backend.cc',
1492 'browser/history/expire_history_backend.h', 1492 'browser/history/expire_history_backend.h',
1493 'browser/history/history_backend.cc', 1493 'browser/history/history_backend.cc',
1494 'browser/history/history_backend.h', 1494 'browser/history/history_backend.h',
1495 'browser/history/history_backend_android.cc', 1495 'browser/history/history_backend_android.cc',
1496 'browser/history/history_database.cc',
1497 'browser/history/history_database.h',
1498 'browser/history/history_details.h', 1496 'browser/history/history_details.h',
1499 'browser/history/history_notifications.cc', 1497 'browser/history/history_notifications.cc',
1500 'browser/history/history_notifications.h', 1498 'browser/history/history_notifications.h',
1501 'browser/history/history_service.cc', 1499 'browser/history/history_service.cc',
1502 'browser/history/history_service.h', 1500 'browser/history/history_service.h',
1503 'browser/history/history_service_factory.cc', 1501 'browser/history/history_service_factory.cc',
1504 'browser/history/history_service_factory.h', 1502 'browser/history/history_service_factory.h',
1505 'browser/history/history_tab_helper.cc', 1503 'browser/history/history_tab_helper.cc',
1506 'browser/history/history_tab_helper.h', 1504 'browser/history/history_tab_helper.h',
1507 'browser/history/in_memory_history_backend.cc', 1505 'browser/history/in_memory_history_backend.cc',
(...skipping 1849 matching lines...) Expand 10 before | Expand all | Expand 10 after
3357 'sources': [ '<@(chrome_browser_non_mobile_sources)' ], 3355 'sources': [ '<@(chrome_browser_non_mobile_sources)' ],
3358 'dependencies': [ 3356 'dependencies': [
3359 '../device/core/core.gyp:device_core', 3357 '../device/core/core.gyp:device_core',
3360 '../device/usb/usb.gyp:device_usb', 3358 '../device/usb/usb.gyp:device_usb',
3361 ] 3359 ]
3362 }], 3360 }],
3363 ['OS=="android"', { 3361 ['OS=="android"', {
3364 'dependencies': [ 3362 'dependencies': [
3365 '../components/components.gyp:cdm_browser', 3363 '../components/components.gyp:cdm_browser',
3366 '../components/components.gyp:enhanced_bookmarks', 3364 '../components/components.gyp:enhanced_bookmarks',
3367 '../components/components.gyp:history_core_android',
3368 '../components/components.gyp:web_contents_delegate_android', 3365 '../components/components.gyp:web_contents_delegate_android',
3369 '../components/components_resources.gyp:components_resources', 3366 '../components/components_resources.gyp:components_resources',
3370 '../third_party/android_opengl/etc1/etc1.gyp:etc1', 3367 '../third_party/android_opengl/etc1/etc1.gyp:etc1',
3371 'chrome_browser_jni_headers', 3368 'chrome_browser_jni_headers',
3372 ], 3369 ],
3373 'dependencies!': [ 3370 'dependencies!': [
3374 '../components/components.gyp:feedback_component', 3371 '../components/components.gyp:feedback_component',
3375 '../components/components.gyp:storage_monitor', 3372 '../components/components.gyp:storage_monitor',
3376 '../components/components.gyp:web_modal', 3373 '../components/components.gyp:web_modal',
3377 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput' , 3374 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput' ,
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
3704 'variables': { 3701 'variables': {
3705 'proto_in_dir': 'browser/sync_file_system/drive_backend', 3702 'proto_in_dir': 'browser/sync_file_system/drive_backend',
3706 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', 3703 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend',
3707 }, 3704 },
3708 'includes': [ '../build/protoc.gypi' ] 3705 'includes': [ '../build/protoc.gypi' ]
3709 }, 3706 },
3710 ], 3707 ],
3711 },], 3708 },],
3712 ], 3709 ],
3713 } 3710 }
OLDNEW
« no previous file with comments | « chrome/browser/safe_browsing/incident_reporting/last_download_finder_unittest.cc ('k') | chrome/test/base/testing_profile.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698