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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 7189029: Implement an initial extension settings API. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Make clang happy Created 9 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
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/chrome_tests.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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'dependencies': [ 10 'dependencies': [
(...skipping 24 matching lines...) Expand all
35 '../net/net.gyp:net', 35 '../net/net.gyp:net',
36 '../ppapi/ppapi_internal.gyp:ppapi_proxy', # For PpapiMsg_LoadPlugin 36 '../ppapi/ppapi_internal.gyp:ppapi_proxy', # For PpapiMsg_LoadPlugin
37 '../printing/printing.gyp:printing', 37 '../printing/printing.gyp:printing',
38 '../skia/skia.gyp:skia', 38 '../skia/skia.gyp:skia',
39 '../third_party/bzip2/bzip2.gyp:bzip2', 39 '../third_party/bzip2/bzip2.gyp:bzip2',
40 '../third_party/cld/cld.gyp:cld', 40 '../third_party/cld/cld.gyp:cld',
41 '../third_party/expat/expat.gyp:expat', 41 '../third_party/expat/expat.gyp:expat',
42 '../third_party/hunspell/hunspell.gyp:hunspell', 42 '../third_party/hunspell/hunspell.gyp:hunspell',
43 '../third_party/icu/icu.gyp:icui18n', 43 '../third_party/icu/icu.gyp:icui18n',
44 '../third_party/icu/icu.gyp:icuuc', 44 '../third_party/icu/icu.gyp:icuuc',
45 '../third_party/leveldb/leveldb.gyp:leveldb',
45 '../third_party/libjingle/libjingle.gyp:libjingle', 46 '../third_party/libjingle/libjingle.gyp:libjingle',
46 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', 47 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber',
47 '../third_party/libphonenumber/libphonenumber.gyp:phonenumber_proto', 48 '../third_party/libphonenumber/libphonenumber.gyp:phonenumber_proto',
48 '../third_party/libxml/libxml.gyp:libxml', 49 '../third_party/libxml/libxml.gyp:libxml',
49 '../third_party/npapi/npapi.gyp:npapi', 50 '../third_party/npapi/npapi.gyp:npapi',
50 '../ui/base/strings/ui_strings.gyp:ui_strings', 51 '../ui/base/strings/ui_strings.gyp:ui_strings',
51 '../ui/gfx/surface/surface.gyp:surface', 52 '../ui/gfx/surface/surface.gyp:surface',
52 '../ui/ui.gyp:ui_resources', 53 '../ui/ui.gyp:ui_resources',
53 '../webkit/support/webkit_support.gyp:appcache', 54 '../webkit/support/webkit_support.gyp:appcache',
54 '../webkit/support/webkit_support.gyp:blob', 55 '../webkit/support/webkit_support.gyp:blob',
(...skipping 998 matching lines...) Expand 10 before | Expand all | Expand 10 after
1053 'browser/extensions/extension_protocols.cc', 1054 'browser/extensions/extension_protocols.cc',
1054 'browser/extensions/extension_protocols.h', 1055 'browser/extensions/extension_protocols.h',
1055 'browser/extensions/extension_proxy_api.cc', 1056 'browser/extensions/extension_proxy_api.cc',
1056 'browser/extensions/extension_proxy_api.h', 1057 'browser/extensions/extension_proxy_api.h',
1057 'browser/extensions/extension_proxy_api_constants.cc', 1058 'browser/extensions/extension_proxy_api_constants.cc',
1058 'browser/extensions/extension_proxy_api_constants.h', 1059 'browser/extensions/extension_proxy_api_constants.h',
1059 'browser/extensions/extension_proxy_api_helpers.cc', 1060 'browser/extensions/extension_proxy_api_helpers.cc',
1060 'browser/extensions/extension_proxy_api_helpers.h', 1061 'browser/extensions/extension_proxy_api_helpers.h',
1061 'browser/extensions/extension_rlz_module.cc', 1062 'browser/extensions/extension_rlz_module.cc',
1062 'browser/extensions/extension_rlz_module.h', 1063 'browser/extensions/extension_rlz_module.h',
1064 'browser/extensions/extension_settings.cc',
1065 'browser/extensions/extension_settings.h',
1066 'browser/extensions/extension_settings_api.cc',
1067 'browser/extensions/extension_settings_api.h',
1068 'browser/extensions/extension_settings_noop_storage.cc',
1069 'browser/extensions/extension_settings_noop_storage.h',
1070 'browser/extensions/extension_settings_storage.h',
1071 'browser/extensions/extension_settings_storage_cache.cc',
1072 'browser/extensions/extension_settings_storage_cache.h',
1073 'browser/extensions/extension_settings_leveldb_storage.cc',
1074 'browser/extensions/extension_settings_leveldb_storage.h',
1063 'browser/extensions/extension_service.cc', 1075 'browser/extensions/extension_service.cc',
1064 'browser/extensions/extension_service.h', 1076 'browser/extensions/extension_service.h',
1065 'browser/extensions/extension_sidebar_api.cc', 1077 'browser/extensions/extension_sidebar_api.cc',
1066 'browser/extensions/extension_sidebar_api.h', 1078 'browser/extensions/extension_sidebar_api.h',
1067 'browser/extensions/extension_special_storage_policy.cc', 1079 'browser/extensions/extension_special_storage_policy.cc',
1068 'browser/extensions/extension_special_storage_policy.h', 1080 'browser/extensions/extension_special_storage_policy.h',
1069 'browser/extensions/extension_sync_data.cc', 1081 'browser/extensions/extension_sync_data.cc',
1070 'browser/extensions/extension_sync_data.h', 1082 'browser/extensions/extension_sync_data.h',
1071 'browser/extensions/extension_tab_helper.cc', 1083 'browser/extensions/extension_tab_helper.cc',
1072 'browser/extensions/extension_tab_helper.h', 1084 'browser/extensions/extension_tab_helper.h',
(...skipping 3867 matching lines...) Expand 10 before | Expand all | Expand 10 after
4940 # weak imports in dependents, who still must #include 4952 # weak imports in dependents, who still must #include
4941 # closure_blocks_leopard_compat.h to get weak imports. 4953 # closure_blocks_leopard_compat.h to get weak imports.
4942 'type': 'none', 4954 'type': 'none',
4943 }], 4955 }],
4944 ], 4956 ],
4945 }, 4957 },
4946 ], 4958 ],
4947 }], 4959 }],
4948 ], 4960 ],
4949 } 4961 }
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698