| 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/benchmarking_extension.cc', | 8 'renderer/benchmarking_extension.cc', |
| 9 'renderer/benchmarking_extension.h', | 9 'renderer/benchmarking_extension.h', |
| 10 'renderer/extensions/app_bindings.cc', | 10 'renderer/extensions/app_bindings.cc', |
| (...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 }], | 331 }], |
| 332 ['safe_browsing==1 or safe_browsing==2', { | 332 ['safe_browsing==1 or safe_browsing==2', { |
| 333 'sources': [ | 333 'sources': [ |
| 334 '<@(chrome_renderer_basic_safe_browsing_sources)', | 334 '<@(chrome_renderer_basic_safe_browsing_sources)', |
| 335 ], | 335 ], |
| 336 }], | 336 }], |
| 337 ['safe_browsing==1', { | 337 ['safe_browsing==1', { |
| 338 'sources': [ | 338 'sources': [ |
| 339 '<@(chrome_renderer_safe_browsing_sources)', | 339 '<@(chrome_renderer_safe_browsing_sources)', |
| 340 ], | 340 ], |
| 341 'defines': [ | |
| 342 'FULL_SAFE_BROWSING', | |
| 343 ], | |
| 344 'dependencies': [ | 341 'dependencies': [ |
| 345 'safe_browsing_proto', | 342 'safe_browsing_proto', |
| 346 '../third_party/smhasher/smhasher.gyp:murmurhash3', | 343 '../third_party/smhasher/smhasher.gyp:murmurhash3', |
| 347 ], | 344 ], |
| 348 }], | 345 }], |
| 349 ['safe_browsing==2', { | |
| 350 'defines': [ | |
| 351 'MOBILE_SAFE_BROWSING', | |
| 352 ], | |
| 353 }], | |
| 354 ['enable_extensions==1', { | 346 ['enable_extensions==1', { |
| 355 'sources': [ | 347 'sources': [ |
| 356 '<@(chrome_renderer_extensions_sources)', | 348 '<@(chrome_renderer_extensions_sources)', |
| 357 ], | 349 ], |
| 358 }], | 350 }], |
| 359 ['enable_webrtc==1', { | 351 ['enable_webrtc==1', { |
| 360 'sources': [ | 352 'sources': [ |
| 361 '<@(chrome_renderer_webrtc_sources)', | 353 '<@(chrome_renderer_webrtc_sources)', |
| 362 ], | 354 ], |
| 363 }], | 355 }], |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 }], | 418 }], |
| 427 ['enable_printing!=0', { | 419 ['enable_printing!=0', { |
| 428 'dependencies': [ | 420 'dependencies': [ |
| 429 '../printing/printing.gyp:printing', | 421 '../printing/printing.gyp:printing', |
| 430 ], | 422 ], |
| 431 }], | 423 }], |
| 432 ], | 424 ], |
| 433 }, | 425 }, |
| 434 ], | 426 ], |
| 435 } | 427 } |
| OLD | NEW |