| 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 1098 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1109 # x11 build | 1109 # x11 build |
| 1110 ['use_x11==1', { | 1110 ['use_x11==1', { |
| 1111 'dependencies': [ | 1111 'dependencies': [ |
| 1112 '../build/linux/system.gyp:x11', | 1112 '../build/linux/system.gyp:x11', |
| 1113 '../ui/events/platform/events_platform.gyp:events_platform', | 1113 '../ui/events/platform/events_platform.gyp:events_platform', |
| 1114 '../ui/events/platform/x11/x11_events_platform.gyp:x11_events_pl
atform', | 1114 '../ui/events/platform/x11/x11_events_platform.gyp:x11_events_pl
atform', |
| 1115 ], | 1115 ], |
| 1116 }], | 1116 }], |
| 1117 ], | 1117 ], |
| 1118 }], | 1118 }], |
| 1119 ['safe_browsing==1', { | |
| 1120 'defines': [ | |
| 1121 'FULL_SAFE_BROWSING', | |
| 1122 ], | |
| 1123 }], | |
| 1124 ['safe_browsing==2', { | |
| 1125 'defines': [ | |
| 1126 'MOBILE_SAFE_BROWSING', | |
| 1127 ], | |
| 1128 }], | |
| 1129 ['configuration_policy==1', { | 1119 ['configuration_policy==1', { |
| 1130 'dependencies': [ | 1120 'dependencies': [ |
| 1131 '../components/components.gyp:policy', | 1121 '../components/components.gyp:policy', |
| 1132 ], | 1122 ], |
| 1133 'sources': [ | 1123 'sources': [ |
| 1134 'browser/extensions/policy_handlers.cc', | 1124 'browser/extensions/policy_handlers.cc', |
| 1135 'browser/extensions/policy_handlers.h', | 1125 'browser/extensions/policy_handlers.h', |
| 1136 ], | 1126 ], |
| 1137 }], | 1127 }], |
| 1138 ['OS=="win" or OS=="mac"', { | 1128 ['OS=="win" or OS=="mac"', { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1184 }], | 1174 }], |
| 1185 ['enable_app_list==1', { | 1175 ['enable_app_list==1', { |
| 1186 'sources': [ | 1176 'sources': [ |
| 1187 '<@(chrome_browser_extensions_app_list_sources)', | 1177 '<@(chrome_browser_extensions_app_list_sources)', |
| 1188 ], | 1178 ], |
| 1189 }] | 1179 }] |
| 1190 ], | 1180 ], |
| 1191 }, | 1181 }, |
| 1192 ], | 1182 ], |
| 1193 } | 1183 } |
| OLD | NEW |