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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 11307015: Upstream changes to chrome_browser.gypi. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: exclude safe_browsing_proto if safe_browsing==0 Created 8 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
« no previous file with comments | « no previous file | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'browser', 9 'target_name': 'browser',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 2265 matching lines...) Expand 10 before | Expand all | Expand 10 after
2276 ['include', 'browser/policy/policy_service_stub.cc'], 2276 ['include', 'browser/policy/policy_service_stub.cc'],
2277 ['include', 'browser/policy/policy_service_stub.h'], 2277 ['include', 'browser/policy/policy_service_stub.h'],
2278 ], 2278 ],
2279 }], 2279 }],
2280 ['safe_browsing==1', { 2280 ['safe_browsing==1', {
2281 'defines': [ 2281 'defines': [
2282 'ENABLE_SAFE_BROWSING', 2282 'ENABLE_SAFE_BROWSING',
2283 ], 2283 ],
2284 }, { # safe_browsing==0 2284 }, { # safe_browsing==0
2285 'dependencies!': [ 2285 'dependencies!': [
2286 'safe_browsing_proto',
2286 'safe_browsing_report_proto', 2287 'safe_browsing_report_proto',
2287 '../third_party/libusb/libusb.gyp:libusb', 2288 '../third_party/libusb/libusb.gyp:libusb',
2288 ], 2289 ],
2289 'sources!': [ 2290 'sources!': [
2290 'browser/renderer_host/safe_browsing_resource_throttle.cc', 2291 'browser/renderer_host/safe_browsing_resource_throttle.cc',
2291 'browser/renderer_host/safe_browsing_resource_throttle.h', 2292 'browser/renderer_host/safe_browsing_resource_throttle.h',
2292 ], 2293 ],
2293 'sources/': [ 2294 'sources/': [
2294 ['exclude', '^browser/safe_browsing/'], 2295 ['exclude', '^browser/safe_browsing/'],
2295 ['include', '^browser/safe_browsing/safe_browsing_tab_observer.cc'], 2296 ['include', '^browser/safe_browsing/safe_browsing_tab_observer.cc'],
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
2558 'browser/component/components.gyp:web_contents_delegate_android', 2559 'browser/component/components.gyp:web_contents_delegate_android',
2559 'chrome_browser_jni_headers', 2560 'chrome_browser_jni_headers',
2560 ], 2561 ],
2561 'sources': [ 2562 'sources': [
2562 'browser/sessions/in_memory_tab_restore_service.cc', 2563 'browser/sessions/in_memory_tab_restore_service.cc',
2563 'browser/sessions/in_memory_tab_restore_service.h', 2564 'browser/sessions/in_memory_tab_restore_service.h',
2564 'browser/web_resource/notification_promo_mobile_ntp.cc', 2565 'browser/web_resource/notification_promo_mobile_ntp.cc',
2565 'browser/web_resource/notification_promo_mobile_ntp.h', 2566 'browser/web_resource/notification_promo_mobile_ntp.h',
2566 ], 2567 ],
2567 'sources!': [ 2568 'sources!': [
2569 'browser/autocomplete/autocomplete_edit.cc',
2570 'browser/bookmarks/bookmark_drop_info.cc',
2568 # Bookmark export/import are handled via the BookmarkColumns 2571 # Bookmark export/import are handled via the BookmarkColumns
2569 # ContentProvider. 2572 # ContentProvider.
2570 'browser/bookmarks/bookmark_html_writer.cc', 2573 'browser/bookmarks/bookmark_html_writer.cc',
2571 2574
2572 # about:flags is unsupported. 2575 # about:flags is unsupported.
2573 'browser/about_flags.cc', 2576 'browser/about_flags.cc',
2574 'browser/about_flags.h', 2577 'browser/about_flags.h',
2575 2578
2576 'browser/jankometer.cc', 2579 'browser/jankometer.cc',
2577 'browser/sync/sync_global_error.cc', 2580 'browser/sync/sync_global_error.cc',
2578 'browser/sync/sync_global_error.h', 2581 'browser/sync/sync_global_error.h',
2579 2582
2580 # There's no Browser/BrowserList on Android. 2583 # There's no Browser/BrowserList on Android.
2581 'browser/download/download_crx_util.cc', 2584 'browser/download/download_crx_util.cc',
2582 'browser/lifetime/application_lifetime_stub.cc', 2585 'browser/lifetime/application_lifetime_stub.cc',
2583 'browser/managed_mode/managed_mode.cc', 2586 'browser/managed_mode/managed_mode.cc',
2584 'browser/managed_mode/managed_mode.h', 2587 'browser/managed_mode/managed_mode.h',
2585 'browser/managed_mode/managed_mode_url_filter.cc', 2588 'browser/managed_mode/managed_mode_url_filter.cc',
2586 'browser/managed_mode/managed_mode_url_filter.h', 2589 'browser/managed_mode/managed_mode_url_filter.h',
2590 # display_utils_posix uses the gdk.h header which is not available
2591 # on Android.
2592 'browser/metrics/display_utils_posix.cc',
nilesh 2012/10/29 18:54:27 Please make sure all of these entries are valid, d
shashi 2012/10/29 20:27:26 Thanks, done, 3 entries were of dead files. browse
2587 'browser/net/gaia/gaia_oauth_fetcher.cc', 2593 'browser/net/gaia/gaia_oauth_fetcher.cc',
2594 'browser/omnibox_search_hint.cc',
2588 'browser/page_cycler/page_cycler.cc', 2595 'browser/page_cycler/page_cycler.cc',
2589 'browser/page_cycler/page_cycler.h', 2596 'browser/page_cycler/page_cycler.h',
2590 'browser/sessions/persistent_tab_restore_service.cc', 2597 'browser/sessions/persistent_tab_restore_service.cc',
2591 'browser/sessions/persistent_tab_restore_service.h', 2598 'browser/sessions/persistent_tab_restore_service.h',
2592 'browser/sessions/session_backend.cc', 2599 'browser/sessions/session_backend.cc',
2593 'browser/sessions/session_backend.h', 2600 'browser/sessions/session_backend.h',
2601 'browser/tab_contents/background_contents.cc',
2602 'browser/tab_contents/background_contents.h',
2603 'browser/tab_contents/render_view_context_menu.cc',
2604 'browser/tab_contents/render_view_context_menu.h',
2605 'browser/tab_contents/render_view_context_menu_observer.cc',
2606 'browser/tab_contents/render_view_context_menu_observer.h',
2607 'browser/tab_contents/spellchecker_submenu_observer.h',
2608 'browser/tab_contents/spellchecker_submenu_observer_hunspell.cc',
2609 'browser/tab_contents/spelling_bubble_model.cc',
2610 'browser/tab_contents/spelling_bubble_model.h',
2611 'browser/tab_contents/spelling_menu_observer.cc',
2612 'browser/tab_contents/spelling_menu_observer.h',
2613 'browser/ui/uma_browsing_activity_observer.cc',
Yaron 2012/10/29 18:46:22 Actually I take that back. I think these browser/u
shashi 2012/10/29 20:27:26 Done.
2614 'browser/ui/uma_browsing_activity_observer.h',
2615 'browser/ui/webui/bookmarks_ui.cc',
2616 'browser/ui/webui/bookmarks_ui.h',
2617 'browser/ui/webui/html_dialog_tab_contents_delegate.cc',
2618 'browser/ui/webui/tracing_ui.cc',
2619 'browser/ui/webui/tracing_ui.h',
2594 'browser/upgrade_detector.cc', 2620 'browser/upgrade_detector.cc',
2595 'browser/upgrade_detector.h', 2621 'browser/upgrade_detector.h',
2596 'browser/upgrade_detector_impl.cc', 2622 'browser/upgrade_detector_impl.cc',
2597 'browser/upgrade_detector_impl.h', 2623 'browser/upgrade_detector_impl.h',
2598 2624
2599 # Not used by Android 2625 # Not used by Android
2600 'browser/chrome_browser_main_posix.cc', 2626 'browser/chrome_browser_main_posix.cc',
2601 'browser/chrome_browser_main_posix.h', 2627 'browser/chrome_browser_main_posix.h',
2602 'browser/process_singleton.cc', 2628 'browser/process_singleton.cc',
2603 ], 2629 ],
2604 'sources/': [ 2630 'sources/': [
2605 ['exclude', '^browser/captive_portal/'], 2631 ['exclude', '^browser/captive_portal/'],
2606 ['exclude', '^browser/chrome_to_mobile'], 2632 ['exclude', '^browser/chrome_to_mobile'],
2607 ['exclude', '^browser/first_run/'], 2633 ['exclude', '^browser/first_run/'],
2608 ['include', '^browser/first_run/first_run.cc'], # For ctor/dtor of a struct. 2634 ['include', '^browser/first_run/first_run.cc'], # For ctor/dtor of a struct.
2609 ['exclude', '^browser/importer/'], 2635 ['exclude', '^browser/importer/'],
2610 ['exclude', '^browser/lifetime/'], 2636 ['exclude', '^browser/lifetime/'],
2611 ['exclude', '^browser/service/'], 2637 ['exclude', '^browser/service/'],
2612 ['exclude', '^browser/speech/'], 2638 ['exclude', '^browser/speech/'],
2613 ['exclude', '^browser/sync/glue/app_'], 2639 ['exclude', '^browser/sync/glue/app_'],
2614 ['exclude', '^browser/sync/glue/extension_'], 2640 ['exclude', '^browser/sync/glue/extension_'],
2641 ['exclude', '^browser/sync/glue/theme_'],
2615 ['exclude', '^browser/usb/'], 2642 ['exclude', '^browser/usb/'],
2616 ], 2643 ],
2617 }], 2644 }],
2618 ['OS=="mac"', { 2645 ['OS=="mac"', {
2619 'sources!': [ 2646 'sources!': [
2620 'browser/automation/automation_provider_list_generic.cc', 2647 'browser/automation/automation_provider_list_generic.cc',
2621 'browser/bookmarks/bookmark_drop_info.cc', 2648 'browser/bookmarks/bookmark_drop_info.cc',
2622 'browser/first_run/upgrade_util.cc', 2649 'browser/first_run/upgrade_util.cc',
2623 'browser/importer/nss_decryptor_system_nss.cc', 2650 'browser/importer/nss_decryptor_system_nss.cc',
2624 'browser/importer/nss_decryptor_system_nss.h', 2651 'browser/importer/nss_decryptor_system_nss.h',
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
2955 'proto_in_dir': '../third_party/cros_system_api/dbus', 2982 'proto_in_dir': '../third_party/cros_system_api/dbus',
2956 'proto_out_dir': 'chrome/browser/media_transfer_protocol', 2983 'proto_out_dir': 'chrome/browser/media_transfer_protocol',
2957 }, 2984 },
2958 'includes': ['../build/protoc.gypi'], 2985 'includes': ['../build/protoc.gypi'],
2959 }, 2986 },
2960 ], 2987 ],
2961 }, 2988 },
2962 ], 2989 ],
2963 ], 2990 ],
2964 } 2991 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698