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/isolated_world_ids.h', | 10 'renderer/isolated_world_ids.h', |
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 ], | 364 ], |
365 'dependencies': [ | 365 'dependencies': [ |
366 '../third_party/hunspell/hunspell.gyp:hunspell', | 366 '../third_party/hunspell/hunspell.gyp:hunspell', |
367 ], | 367 ], |
368 }], | 368 }], |
369 ['OS=="mac"', { | 369 ['OS=="mac"', { |
370 'dependencies': [ | 370 'dependencies': [ |
371 '../third_party/mach_override/mach_override.gyp:mach_override', | 371 '../third_party/mach_override/mach_override.gyp:mach_override', |
372 ], | 372 ], |
373 }], | 373 }], |
374 ['enable_printing!=0', { | 374 ['enable_basic_printing==1 or enable_print_preview==1', { |
375 'dependencies': [ | 375 'dependencies': [ |
376 '../printing/printing.gyp:printing', | 376 '../printing/printing.gyp:printing', |
377 ], | 377 ], |
378 'sources': [ | 378 'sources': [ |
379 '<@(chrome_renderer_printing_sources)', | 379 '<@(chrome_renderer_printing_sources)', |
380 ], | 380 ], |
381 }], | 381 }], |
382 ['enable_printing==1', { | 382 ['enable_print_preview==1', { |
383 'sources': [ | 383 'sources': [ |
384 '<@(chrome_renderer_full_printing_sources)', | 384 '<@(chrome_renderer_full_printing_sources)', |
385 ], | 385 ], |
386 }], | 386 }], |
387 ['OS!="android"', { | 387 ['OS!="android"', { |
388 'sources': [ | 388 'sources': [ |
389 '<@(chrome_renderer_non_android_sources)', | 389 '<@(chrome_renderer_non_android_sources)', |
390 ], | 390 ], |
391 }], | 391 }], |
392 ['OS=="win"', { | 392 ['OS=="win"', { |
(...skipping 12 matching lines...) Expand all Loading... |
405 'export_dependent_settings': [ | 405 'export_dependent_settings': [ |
406 '<(allocator_target)', | 406 '<(allocator_target)', |
407 ], | 407 ], |
408 }], | 408 }], |
409 ], | 409 ], |
410 }], | 410 }], |
411 ], | 411 ], |
412 }, | 412 }, |
413 ], | 413 ], |
414 } | 414 } |
OLD | NEW |