| OLD | NEW |
| 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 566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 577 { | 577 { |
| 578 'targets': [ | 578 'targets': [ |
| 579 { | 579 { |
| 580 'target_name': 'chrome_java', | 580 'target_name': 'chrome_java', |
| 581 'type': 'none', | 581 'type': 'none', |
| 582 'dependencies': [ | 582 'dependencies': [ |
| 583 'activity_type_ids_java', | 583 'activity_type_ids_java', |
| 584 'app_banner_metrics_ids_java', | 584 'app_banner_metrics_ids_java', |
| 585 'chrome_resources.gyp:chrome_strings', | 585 'chrome_resources.gyp:chrome_strings', |
| 586 'chrome_strings_grd', | 586 'chrome_strings_grd', |
| 587 'content_setting_java', |
| 588 'content_settings_type_java', |
| 587 'profile_account_management_metrics_java', | 589 'profile_account_management_metrics_java', |
| 588 'page_info_connection_type_java', | 590 'page_info_connection_type_java', |
| 589 'profile_sync_service_model_type_selection_java', | 591 'profile_sync_service_model_type_selection_java', |
| 590 'resource_id_java', | 592 'resource_id_java', |
| 591 'toolbar_model_security_levels_java', | 593 'toolbar_model_security_levels_java', |
| 592 'tab_load_status_java', | 594 'tab_load_status_java', |
| 593 '../base/base.gyp:base', | 595 '../base/base.gyp:base', |
| 594 '../components/components.gyp:bookmarks_java', | 596 '../components/components.gyp:bookmarks_java', |
| 595 '../components/components.gyp:dom_distiller_core_java', | 597 '../components/components.gyp:dom_distiller_core_java', |
| 596 '../components/components.gyp:gcm_driver_java', | 598 '../components/components.gyp:gcm_driver_java', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 623 'target_name': 'chrome_strings_grd', | 625 'target_name': 'chrome_strings_grd', |
| 624 'type': 'none', | 626 'type': 'none', |
| 625 'variables': { | 627 'variables': { |
| 626 'grd_file': '../chrome/android/java/strings/android_chrome_strings.g
rd', | 628 'grd_file': '../chrome/android/java/strings/android_chrome_strings.g
rd', |
| 627 }, | 629 }, |
| 628 'includes': [ | 630 'includes': [ |
| 629 '../build/java_strings_grd.gypi', | 631 '../build/java_strings_grd.gypi', |
| 630 ], | 632 ], |
| 631 }, | 633 }, |
| 632 { | 634 { |
| 635 'target_name': 'content_setting_java', |
| 636 'type': 'none', |
| 637 'variables': { |
| 638 'source_file': '../components/content_settings/core/common/content_s
ettings.h', |
| 639 }, |
| 640 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
| 641 }, |
| 642 { |
| 643 'target_name': 'content_settings_type_java', |
| 644 'type': 'none', |
| 645 'variables': { |
| 646 'source_file': '../components/content_settings/core/common/content_s
ettings_types.h', |
| 647 }, |
| 648 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
| 649 }, |
| 650 { |
| 633 'target_name': 'page_info_connection_type_java', | 651 'target_name': 'page_info_connection_type_java', |
| 634 'type': 'none', | 652 'type': 'none', |
| 635 'variables': { | 653 'variables': { |
| 636 'source_file': 'browser/ui/android/website_settings_popup_android.h'
, | 654 'source_file': 'browser/ui/android/website_settings_popup_android.h'
, |
| 637 }, | 655 }, |
| 638 'includes': [ '../build/android/java_cpp_enum.gypi' ], | 656 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
| 639 }, | 657 }, |
| 640 ], # 'targets' | 658 ], # 'targets' |
| 641 'includes': [ | 659 'includes': [ |
| 642 'chrome_android.gypi', | 660 'chrome_android.gypi', |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 'service/service_utility_process_host.cc', | 753 'service/service_utility_process_host.cc', |
| 736 'service/service_utility_process_host.h', | 754 'service/service_utility_process_host.h', |
| 737 ], | 755 ], |
| 738 }], | 756 }], |
| 739 ], | 757 ], |
| 740 }, | 758 }, |
| 741 ], | 759 ], |
| 742 }], | 760 }], |
| 743 ], # 'conditions' | 761 ], # 'conditions' |
| 744 } | 762 } |
| OLD | NEW |