| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'chrome_renderer_sources': [ | 7 'chrome_renderer_sources': [ |
| 8 'renderer/banners/app_banner_client.cc', | 8 'renderer/banners/app_banner_client.cc', |
| 9 'renderer/banners/app_banner_client.h', | 9 'renderer/banners/app_banner_client.h', |
| 10 'renderer/benchmarking_extension.cc', | 10 'renderer/benchmarking_extension.cc', |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 'renderer/plugins/chrome_plugin_placeholder.h', | 178 'renderer/plugins/chrome_plugin_placeholder.h', |
| 179 'renderer/plugins/plugin_preroller.cc', | 179 'renderer/plugins/plugin_preroller.cc', |
| 180 'renderer/plugins/plugin_preroller.h', | 180 'renderer/plugins/plugin_preroller.h', |
| 181 ], | 181 ], |
| 182 # For safe_browsing==1 or safe_browsing==2. | 182 # For safe_browsing==1 or safe_browsing==2. |
| 183 'chrome_renderer_basic_safe_browsing_sources': [ | 183 'chrome_renderer_basic_safe_browsing_sources': [ |
| 184 'renderer/safe_browsing/malware_dom_details.cc', | 184 'renderer/safe_browsing/malware_dom_details.cc', |
| 185 'renderer/safe_browsing/malware_dom_details.h', | 185 'renderer/safe_browsing/malware_dom_details.h', |
| 186 ], | 186 ], |
| 187 # For safe_browsing==1 only. | 187 # For safe_browsing==1 only. |
| 188 'chrome_renderer_safe_browsing_sources': [ | 188 'chrome_renderer_full_safe_browsing_sources': [ |
| 189 'renderer/safe_browsing/feature_extractor_clock.cc', | 189 'renderer/safe_browsing/feature_extractor_clock.cc', |
| 190 'renderer/safe_browsing/feature_extractor_clock.h', | 190 'renderer/safe_browsing/feature_extractor_clock.h', |
| 191 'renderer/safe_browsing/features.cc', | 191 'renderer/safe_browsing/features.cc', |
| 192 'renderer/safe_browsing/features.h', | 192 'renderer/safe_browsing/features.h', |
| 193 'renderer/safe_browsing/murmurhash3_util.cc', | 193 'renderer/safe_browsing/murmurhash3_util.cc', |
| 194 'renderer/safe_browsing/murmurhash3_util.h', | 194 'renderer/safe_browsing/murmurhash3_util.h', |
| 195 'renderer/safe_browsing/phishing_classifier.cc', | 195 'renderer/safe_browsing/phishing_classifier.cc', |
| 196 'renderer/safe_browsing/phishing_classifier.h', | 196 'renderer/safe_browsing/phishing_classifier.h', |
| 197 'renderer/safe_browsing/phishing_classifier_delegate.cc', | 197 'renderer/safe_browsing/phishing_classifier_delegate.cc', |
| 198 'renderer/safe_browsing/phishing_classifier_delegate.h', | 198 'renderer/safe_browsing/phishing_classifier_delegate.h', |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 '../ppapi/ppapi_internal.gyp:ppapi_shared', | 302 '../ppapi/ppapi_internal.gyp:ppapi_shared', |
| 303 ], | 303 ], |
| 304 }], | 304 }], |
| 305 ['safe_browsing==1 or safe_browsing==2', { | 305 ['safe_browsing==1 or safe_browsing==2', { |
| 306 'sources': [ | 306 'sources': [ |
| 307 '<@(chrome_renderer_basic_safe_browsing_sources)', | 307 '<@(chrome_renderer_basic_safe_browsing_sources)', |
| 308 ], | 308 ], |
| 309 }], | 309 }], |
| 310 ['safe_browsing==1', { | 310 ['safe_browsing==1', { |
| 311 'sources': [ | 311 'sources': [ |
| 312 '<@(chrome_renderer_safe_browsing_sources)', | 312 '<@(chrome_renderer_full_safe_browsing_sources)', |
| 313 ], | 313 ], |
| 314 'dependencies': [ | 314 'dependencies': [ |
| 315 'safe_browsing_proto', | 315 'safe_browsing_proto', |
| 316 '../third_party/smhasher/smhasher.gyp:murmurhash3', | 316 '../third_party/smhasher/smhasher.gyp:murmurhash3', |
| 317 ], | 317 ], |
| 318 }], | 318 }], |
| 319 ['enable_extensions==1', { | 319 ['enable_extensions==1', { |
| 320 'dependencies': [ | 320 'dependencies': [ |
| 321 '../extensions/extensions.gyp:extensions_renderer', | 321 '../extensions/extensions.gyp:extensions_renderer', |
| 322 '../extensions/extensions_resources.gyp:extensions_resources', | 322 '../extensions/extensions_resources.gyp:extensions_resources', |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 'export_dependent_settings': [ | 400 'export_dependent_settings': [ |
| 401 '<(allocator_target)', | 401 '<(allocator_target)', |
| 402 ], | 402 ], |
| 403 }], | 403 }], |
| 404 ], | 404 ], |
| 405 }], | 405 }], |
| 406 ], | 406 ], |
| 407 }, | 407 }, |
| 408 ], | 408 ], |
| 409 } | 409 } |
| OLD | NEW |