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

Side by Side Diff: chrome/chrome.gyp

Issue 2084903002: Moved BrowsingDataCounter and part of BrowsingDataCounterUtils to components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 5 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 (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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 7
8 # Define the common dependencies that contain all the actual 8 # Define the common dependencies that contain all the actual
9 # Chromium functionality. This list gets pulled in below by 9 # Chromium functionality. This list gets pulled in below by
10 # the link of the actual chrome (or chromium) executable on 10 # the link of the actual chrome (or chromium) executable on
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 }], # chromeos==1 448 }], # chromeos==1
449 ['OS=="android"', 449 ['OS=="android"',
450 { 450 {
451 'targets': [ 451 'targets': [
452 { 452 {
453 # GN: //chrome/android:chrome_java 453 # GN: //chrome/android:chrome_java
454 'target_name': 'chrome_java', 454 'target_name': 'chrome_java',
455 'type': 'none', 455 'type': 'none',
456 'dependencies': [ 456 'dependencies': [
457 'activity_type_ids_java', 457 'activity_type_ids_java',
458 'browsing_data_time_period_java',
459 'browsing_data_type_java',
460 'chrome_locale_paks', 458 'chrome_locale_paks',
461 'chrome_resources.gyp:chrome_strings', 459 'chrome_resources.gyp:chrome_strings',
462 'chrome_strings_grd', 460 'chrome_strings_grd',
463 'chrome_version_java', 461 'chrome_version_java',
464 'content_setting_java', 462 'content_setting_java',
465 'content_settings_type_java', 463 'content_settings_type_java',
466 'connectivity_check_result_java', 464 'connectivity_check_result_java',
467 'data_use_ui_message_enum_java', 465 'data_use_ui_message_enum_java',
468 'document_tab_model_info_proto_java', 466 'document_tab_model_info_proto_java',
469 'infobar_action_type_java', 467 'infobar_action_type_java',
470 'most_visited_tile_type_java', 468 'most_visited_tile_type_java',
471 'page_info_connection_type_java', 469 'page_info_connection_type_java',
472 'policy_auditor_java', 470 'policy_auditor_java',
473 'profile_account_management_metrics_java', 471 'profile_account_management_metrics_java',
474 'resource_id_java', 472 'resource_id_java',
475 'shortcut_source_java', 473 'shortcut_source_java',
476 'signin_metrics_enum_java', 474 'signin_metrics_enum_java',
477 'tab_load_status_java', 475 'tab_load_status_java',
478 'website_settings_action_java', 476 'website_settings_action_java',
479 '../base/base.gyp:base', 477 '../base/base.gyp:base',
480 '../base/base.gyp:base_build_config_gen', 478 '../base/base.gyp:base_build_config_gen',
481 '../build/android/java_google_api_keys.gyp:google_api_keys_java', 479 '../build/android/java_google_api_keys.gyp:google_api_keys_java',
482 '../chrome/android/chrome_apk.gyp:custom_tabs_service_aidl', 480 '../chrome/android/chrome_apk.gyp:custom_tabs_service_aidl',
483 '../components/components.gyp:app_restrictions_resources', 481 '../components/components.gyp:app_restrictions_resources',
484 '../components/components.gyp:autocomplete_match_java', 482 '../components/components.gyp:autocomplete_match_java',
485 '../components/components.gyp:autocomplete_match_type_java', 483 '../components/components.gyp:autocomplete_match_type_java',
486 '../components/components.gyp:bookmarks_java', 484 '../components/components.gyp:bookmarks_java',
485 '../components/components.gyp:browsing_data_utils_java',
487 '../components/components.gyp:dom_distiller_core_java', 486 '../components/components.gyp:dom_distiller_core_java',
488 '../components/components.gyp:gcm_driver_java', 487 '../components/components.gyp:gcm_driver_java',
489 '../components/components.gyp:infobar_delegate_java', 488 '../components/components.gyp:infobar_delegate_java',
490 '../components/components.gyp:instance_id_driver_java', 489 '../components/components.gyp:instance_id_driver_java',
491 '../components/components.gyp:invalidation_java', 490 '../components/components.gyp:invalidation_java',
492 '../components/components.gyp:investigated_scenario_java', 491 '../components/components.gyp:investigated_scenario_java',
493 '../components/components.gyp:ntp_tiles_enums_java', 492 '../components/components.gyp:ntp_tiles_enums_java',
494 '../components/components.gyp:navigation_interception_java', 493 '../components/components.gyp:navigation_interception_java',
495 '../components/components.gyp:offline_page_model_enums_java', 494 '../components/components.gyp:offline_page_model_enums_java',
496 '../components/components.gyp:policy_java', 495 '../components/components.gyp:policy_java',
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
727 'service/service_utility_process_host.cc', 726 'service/service_utility_process_host.cc',
728 'service/service_utility_process_host.h', 727 'service/service_utility_process_host.h',
729 ], 728 ],
730 }], 729 }],
731 ], 730 ],
732 }, 731 },
733 ], 732 ],
734 }], 733 }],
735 ], # 'conditions' 734 ], # 'conditions'
736 } 735 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/settings/settings_clear_browsing_data_handler.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698