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