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

Side by Side Diff: chrome/chrome_browser_extensions.gypi

Issue 397853002: Refactor safe-browsing build-config definitions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 1036 matching lines...) Expand 10 before | Expand all | Expand 10 after
1047 # x11 build 1047 # x11 build
1048 ['use_x11==1', { 1048 ['use_x11==1', {
1049 'dependencies': [ 1049 'dependencies': [
1050 '../build/linux/system.gyp:x11', 1050 '../build/linux/system.gyp:x11',
1051 '../ui/events/platform/events_platform.gyp:events_platform', 1051 '../ui/events/platform/events_platform.gyp:events_platform',
1052 '../ui/events/platform/x11/x11_events_platform.gyp:x11_events_pl atform', 1052 '../ui/events/platform/x11/x11_events_platform.gyp:x11_events_pl atform',
1053 ], 1053 ],
1054 }], 1054 }],
1055 ], 1055 ],
1056 }], 1056 }],
1057 ['safe_browsing==1', {
1058 'defines': [
1059 'FULL_SAFE_BROWSING',
1060 ],
1061 }],
1062 ['safe_browsing==2', {
1063 'defines': [
1064 'MOBILE_SAFE_BROWSING',
1065 ],
1066 }],
1067 ['configuration_policy==1', { 1057 ['configuration_policy==1', {
1068 'dependencies': [ 1058 'dependencies': [
1069 '../components/components.gyp:policy', 1059 '../components/components.gyp:policy',
1070 ], 1060 ],
1071 'sources': [ 1061 'sources': [
1072 'browser/extensions/policy_handlers.cc', 1062 'browser/extensions/policy_handlers.cc',
1073 'browser/extensions/policy_handlers.h', 1063 'browser/extensions/policy_handlers.h',
1074 ], 1064 ],
1075 }], 1065 }],
1076 ['OS=="win" or OS=="mac"', { 1066 ['OS=="win" or OS=="mac"', {
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
1165 'type': 'static_library', 1155 'type': 'static_library',
1166 'sources': [ 'browser/extensions/api/cast_channel/cast_channel.proto' ], 1156 'sources': [ 'browser/extensions/api/cast_channel/cast_channel.proto' ],
1167 'variables': { 1157 'variables': {
1168 'proto_in_dir': 'browser/extensions/api/cast_channel', 1158 'proto_in_dir': 'browser/extensions/api/cast_channel',
1169 'proto_out_dir': 'chrome/browser/extensions/api/cast_channel', 1159 'proto_out_dir': 'chrome/browser/extensions/api/cast_channel',
1170 }, 1160 },
1171 'includes': [ '../build/protoc.gypi' ] 1161 'includes': [ '../build/protoc.gypi' ]
1172 }, 1162 },
1173 ], 1163 ],
1174 } 1164 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698