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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 31243002: Move Linux/Android breakpad implementation to breakpad component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 7 years, 2 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 | Annotate | Revision Log
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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 'browser/android/chrome_jni_registrar.cc', 96 'browser/android/chrome_jni_registrar.cc',
97 'browser/android/chrome_jni_registrar.h', 97 'browser/android/chrome_jni_registrar.h',
98 'browser/android/chrome_startup_flags.cc', 98 'browser/android/chrome_startup_flags.cc',
99 'browser/android/chrome_startup_flags.h', 99 'browser/android/chrome_startup_flags.h',
100 'browser/android/chrome_web_contents_delegate_android.cc', 100 'browser/android/chrome_web_contents_delegate_android.cc',
101 'browser/android/chrome_web_contents_delegate_android.h', 101 'browser/android/chrome_web_contents_delegate_android.h',
102 'browser/android/chromium_application.cc', 102 'browser/android/chromium_application.cc',
103 'browser/android/chromium_application.h', 103 'browser/android/chromium_application.h',
104 'browser/android/content_view_util.cc', 104 'browser/android/content_view_util.cc',
105 'browser/android/content_view_util.h', 105 'browser/android/content_view_util.h',
106 'browser/android/crash_dump_manager.cc',
107 'browser/android/crash_dump_manager.h',
108 'browser/android/dev_tools_server.cc', 106 'browser/android/dev_tools_server.cc',
109 'browser/android/dev_tools_server.h', 107 'browser/android/dev_tools_server.h',
110 'browser/android/favicon_helper.cc', 108 'browser/android/favicon_helper.cc',
111 'browser/android/favicon_helper.h', 109 'browser/android/favicon_helper.h',
112 'browser/android/field_trial_helper.cc', 110 'browser/android/field_trial_helper.cc',
113 'browser/android/field_trial_helper.h', 111 'browser/android/field_trial_helper.h',
114 'browser/android/foreign_session_helper.cc', 112 'browser/android/foreign_session_helper.cc',
115 'browser/android/foreign_session_helper.h', 113 'browser/android/foreign_session_helper.h',
116 'browser/android/google_location_settings_helper.h', 114 'browser/android/google_location_settings_helper.h',
117 'browser/android/intent_helper.cc', 115 'browser/android/intent_helper.cc',
(...skipping 2906 matching lines...) Expand 10 before | Expand all | Expand 10 after
3024 }], 3022 }],
3025 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { 3023 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
3026 'link_settings': { 3024 'link_settings': {
3027 'libraries': [ 3025 'libraries': [
3028 '-lXss', 3026 '-lXss',
3029 ], 3027 ],
3030 }, 3028 },
3031 }], 3029 }],
3032 ['os_posix == 1 and OS != "mac" and OS != "ios"', { 3030 ['os_posix == 1 and OS != "mac" and OS != "ios"', {
3033 'sources': [ 3031 'sources': [
3034 'app/breakpad_linux.cc',
3035 'app/breakpad_linux.h',
3036 'app/chrome_breakpad_client.cc', 3032 'app/chrome_breakpad_client.cc',
3037 'app/chrome_breakpad_client.h', 3033 'app/chrome_breakpad_client.h',
3038 'browser/crash_handler_host_linux.cc',
3039 'browser/crash_handler_host_linux.h',
3040 ], 3034 ],
3041 'dependencies': [ 3035 'dependencies': [
3042 '../breakpad/breakpad.gyp:breakpad_client',
3043 '../components/components.gyp:breakpad_component', 3036 '../components/components.gyp:breakpad_component',
3044 # make sure file_version_info_linux.h is generated first. 3037 '../components/components.gyp:breakpad_host',
3045 'common',
3046 ],
3047 'include_dirs': [
3048 # breakpad_linux.cc uses generated file_version_info_linux.h.
3049 '<(SHARED_INTERMEDIATE_DIR)',
3050 '../breakpad/src',
3051 ], 3038 ],
3052 }], 3039 }],
3053 ['use_nss==1', { 3040 ['use_nss==1', {
3054 'sources': [ 3041 'sources': [
3055 'third_party/mozilla_security_manager/nsNSSCertHelper.cpp', 3042 'third_party/mozilla_security_manager/nsNSSCertHelper.cpp',
3056 'third_party/mozilla_security_manager/nsNSSCertHelper.h', 3043 'third_party/mozilla_security_manager/nsNSSCertHelper.h',
3057 'third_party/mozilla_security_manager/nsNSSCertificate.cpp', 3044 'third_party/mozilla_security_manager/nsNSSCertificate.cpp',
3058 'third_party/mozilla_security_manager/nsNSSCertificate.h', 3045 'third_party/mozilla_security_manager/nsNSSCertificate.h',
3059 'third_party/mozilla_security_manager/nsUsageArrayHelper.cpp', 3046 'third_party/mozilla_security_manager/nsUsageArrayHelper.cpp',
3060 'third_party/mozilla_security_manager/nsUsageArrayHelper.h', 3047 'third_party/mozilla_security_manager/nsUsageArrayHelper.h',
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
3489 'browser/local_discovery/privet_notifications_factory.h', 3476 'browser/local_discovery/privet_notifications_factory.h',
3490 'browser/local_discovery/privet_traffic_detector.cc', 3477 'browser/local_discovery/privet_traffic_detector.cc',
3491 'browser/local_discovery/privet_traffic_detector.h', 3478 'browser/local_discovery/privet_traffic_detector.h',
3492 'browser/local_discovery/service_discovery_client_mdns.cc', 3479 'browser/local_discovery/service_discovery_client_mdns.cc',
3493 'browser/local_discovery/service_discovery_client_mdns.h', 3480 'browser/local_discovery/service_discovery_client_mdns.h',
3494 'browser/local_discovery/service_discovery_host_client.cc', 3481 'browser/local_discovery/service_discovery_host_client.cc',
3495 'browser/local_discovery/service_discovery_host_client.h', 3482 'browser/local_discovery/service_discovery_host_client.h',
3496 ] 3483 ]
3497 }] 3484 }]
3498 ], 3485 ],
3499 'target_conditions': [
3500 # Need 'target_conditions' to override default filename_rules to include
3501 # the files on Android.
3502 ['OS=="android"', {
3503 'sources/': [
3504 ['include', '^app/breakpad_linux\\.cc$'],
3505 ['include', '^browser/crash_handler_host_linux\\.cc$'],
3506 ],
3507 }],
3508 ],
3509 }, 3486 },
3510 { 3487 {
3511 # Protobuf compiler / generator for the fraudulent certificate reporting 3488 # Protobuf compiler / generator for the fraudulent certificate reporting
3512 # protocol buffer. 3489 # protocol buffer.
3513 'target_name': 'cert_logger_proto', 3490 'target_name': 'cert_logger_proto',
3514 'type': 'static_library', 3491 'type': 'static_library',
3515 'sources': [ 'browser/net/cert_logger.proto', ], 3492 'sources': [ 'browser/net/cert_logger.proto', ],
3516 'variables': { 3493 'variables': {
3517 'proto_in_dir': 'browser/net', 3494 'proto_in_dir': 'browser/net',
3518 'proto_out_dir': 'chrome/browser/net', 3495 'proto_out_dir': 'chrome/browser/net',
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
3703 'package_name': 'org/chromium/chrome/browser/ui/toolbar', 3680 'package_name': 'org/chromium/chrome/browser/ui/toolbar',
3704 'template_deps': ['browser/ui/toolbar/toolbar_model_security_level_l ist.h'], 3681 'template_deps': ['browser/ui/toolbar/toolbar_model_security_level_l ist.h'],
3705 }, 3682 },
3706 'includes': [ '../build/android/java_cpp_template.gypi' ], 3683 'includes': [ '../build/android/java_cpp_template.gypi' ],
3707 }, 3684 },
3708 ], 3685 ],
3709 }, 3686 },
3710 ], 3687 ],
3711 ], 3688 ],
3712 } 3689 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698