OLD | NEW |
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 'variables': { | 6 'variables': { |
7 # These variables are shared with the GN build. | 7 # These variables are shared with the GN build. |
8 # Name is that these are the extensions files for the extensions target. | 8 # Name is that these are the extensions files for the extensions target. |
9 # "chrome_browser_extensions_sources' are the extensions files in the | 9 # "chrome_browser_extensions_sources' are the extensions files in the |
10 # browser target. | 10 # browser target. |
(...skipping 1095 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1106 # x11 build | 1106 # x11 build |
1107 ['use_x11==1', { | 1107 ['use_x11==1', { |
1108 'dependencies': [ | 1108 'dependencies': [ |
1109 '../build/linux/system.gyp:x11', | 1109 '../build/linux/system.gyp:x11', |
1110 '../ui/events/platform/events_platform.gyp:events_platform', | 1110 '../ui/events/platform/events_platform.gyp:events_platform', |
1111 '../ui/events/platform/x11/x11_events_platform.gyp:x11_events_pl
atform', | 1111 '../ui/events/platform/x11/x11_events_platform.gyp:x11_events_pl
atform', |
1112 ], | 1112 ], |
1113 }], | 1113 }], |
1114 ], | 1114 ], |
1115 }], | 1115 }], |
1116 ['safe_browsing==1', { | |
1117 'defines': [ | |
1118 'FULL_SAFE_BROWSING', | |
1119 ], | |
1120 }], | |
1121 ['safe_browsing==2', { | |
1122 'defines': [ | |
1123 'MOBILE_SAFE_BROWSING', | |
1124 ], | |
1125 }], | |
1126 ['configuration_policy==1', { | 1116 ['configuration_policy==1', { |
1127 'dependencies': [ | 1117 'dependencies': [ |
1128 '../components/components.gyp:policy', | 1118 '../components/components.gyp:policy', |
1129 ], | 1119 ], |
1130 'sources': [ | 1120 'sources': [ |
1131 'browser/extensions/policy_handlers.cc', | 1121 'browser/extensions/policy_handlers.cc', |
1132 'browser/extensions/policy_handlers.h', | 1122 'browser/extensions/policy_handlers.h', |
1133 ], | 1123 ], |
1134 }], | 1124 }], |
1135 ['OS=="win" or OS=="mac"', { | 1125 ['OS=="win" or OS=="mac"', { |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1204 'type': 'static_library', | 1194 'type': 'static_library', |
1205 'sources': [ 'browser/extensions/api/cast_channel/cast_channel.proto' ], | 1195 'sources': [ 'browser/extensions/api/cast_channel/cast_channel.proto' ], |
1206 'variables': { | 1196 'variables': { |
1207 'proto_in_dir': 'browser/extensions/api/cast_channel', | 1197 'proto_in_dir': 'browser/extensions/api/cast_channel', |
1208 'proto_out_dir': 'chrome/browser/extensions/api/cast_channel', | 1198 'proto_out_dir': 'chrome/browser/extensions/api/cast_channel', |
1209 }, | 1199 }, |
1210 'includes': [ '../build/protoc.gypi' ] | 1200 'includes': [ '../build/protoc.gypi' ] |
1211 }, | 1201 }, |
1212 ], | 1202 ], |
1213 } | 1203 } |
OLD | NEW |