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

Side by Side Diff: chrome/chrome_browser_extensions.gypi

Issue 23030005: Android: exclude dead code from android build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix ordering in ui.gyp Created 7 years, 4 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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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_extensions', 8 'target_name': 'browser_extensions',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 981 matching lines...) Expand 10 before | Expand all | Expand 10 after
992 }], 992 }],
993 ], 993 ],
994 }], 994 }],
995 ['OS=="android"', { 995 ['OS=="android"', {
996 'sources': [ 996 'sources': [
997 'browser/extensions/extension_error_ui_android.cc', 997 'browser/extensions/extension_error_ui_android.cc',
998 'browser/extensions/extension_error_ui_android.h', 998 'browser/extensions/extension_error_ui_android.h',
999 'browser/extensions/extension_tab_util_android.cc', 999 'browser/extensions/extension_tab_util_android.cc',
1000 ], 1000 ],
1001 'sources!': [ 1001 'sources!': [
1002 'browser/apps/shortcut_manager.cc',
1003 'browser/apps/shortcut_manager_factory.cc',
1004 'browser/extensions/api/declarative/rules_registry_with_cache.cc',
1005 'browser/extensions/api/processes/processes_api_constants.cc',
1006 'browser/extensions/api/web_navigation/frame_navigation_state.cc',
1007 'browser/extensions/api/web_navigation/web_navigation_api.cc',
1008 'browser/extensions/api/web_navigation/web_navigation_api_constants. cc',
1009 'browser/extensions/app_icon_loader_impl.cc',
1010 'browser/extensions/browser_extension_window_controller.cc',
1011 'browser/extensions/context_menu_matcher.cc',
1012 'browser/extensions/extension_context_menu_model.cc',
1002 'browser/extensions/extension_error_ui_default.cc', 1013 'browser/extensions/extension_error_ui_default.cc',
1003 'browser/extensions/extension_error_ui_default.h', 1014 'browser/extensions/extension_error_ui_default.h',
1015 'browser/extensions/extension_function_util.cc',
1016 'browser/extensions/extension_infobar_delegate.cc',
1017 'browser/extensions/extension_install_ui.cc',
1004 'browser/extensions/extension_tab_util.cc', 1018 'browser/extensions/extension_tab_util.cc',
1019 'browser/extensions/extension_uninstall_dialog.cc',
1020 'browser/extensions/theme_installed_infobar_delegate.cc',
1021 'browser/extensions/webstore_startup_installer.cc',
1022 'browser/extensions/window_controller.cc',
1023 'browser/extensions/window_controller_list.cc',
1005 ], 1024 ],
1006 }], 1025 }],
1007 ['chrome_multiple_dll!=1', { 1026 ['chrome_multiple_dll!=1', {
1008 'dependencies': [ 1027 'dependencies': [
1009 '../webkit/support/webkit_support.gyp:glue', 1028 '../webkit/support/webkit_support.gyp:glue',
1010 ], 1029 ],
1011 }], 1030 }],
1012 ], 1031 ],
1013 }, 1032 },
1014 ], 1033 ],
1015 'conditions': [ 1034 'conditions': [
1016 ['chromeos==1', { 1035 ['chromeos==1', {
1017 'targets': [ 1036 'targets': [
1018 { 1037 {
1019 # Protobuf compiler / generator for contacts-related protocol buffers. 1038 # Protobuf compiler / generator for contacts-related protocol buffers.
1020 'target_name': 'contacts_proto', 1039 'target_name': 'contacts_proto',
1021 'type': 'static_library', 1040 'type': 'static_library',
1022 'sources': [ 'browser/chromeos/contacts/contact.proto' ], 1041 'sources': [ 'browser/chromeos/contacts/contact.proto' ],
1023 'variables': { 1042 'variables': {
1024 'proto_in_dir': 'browser/chromeos/contacts', 1043 'proto_in_dir': 'browser/chromeos/contacts',
1025 'proto_out_dir': 'chrome/browser/chromeos/contacts', 1044 'proto_out_dir': 'chrome/browser/chromeos/contacts',
1026 }, 1045 },
1027 'includes': [ '../build/protoc.gypi' ] 1046 'includes': [ '../build/protoc.gypi' ]
1028 }, 1047 },
1029 ], 1048 ],
1030 },], # 'chromeos=1' 1049 },], # 'chromeos=1'
1031 ], # 'conditions' 1050 ], # 'conditions'
1032 } 1051 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698