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 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'base_target': 0, | 8 'base_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 'defines': [ | 475 'defines': [ |
476 'BASE_IMPLEMENTATION', | 476 'BASE_IMPLEMENTATION', |
477 ], | 477 ], |
478 'include_dirs': [ | 478 'include_dirs': [ |
479 '..', | 479 '..', |
480 ], | 480 ], |
481 # These warnings are needed for the files in third_party\dmg_fp. | 481 # These warnings are needed for the files in third_party\dmg_fp. |
482 'msvs_disabled_warnings': [ | 482 'msvs_disabled_warnings': [ |
483 4244, 4554, 4018, 4102, | 483 4244, 4554, 4018, 4102, |
484 ], | 484 ], |
485 'mac_framework_dirs': [ | |
486 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fr
ameworks', | |
487 ], | |
488 'target_conditions': [ | 485 'target_conditions': [ |
489 ['<(use_glib)==0 or >(nacl_untrusted_build)==1', { | 486 ['<(use_glib)==0 or >(nacl_untrusted_build)==1', { |
490 'sources/': [ | 487 'sources/': [ |
491 ['exclude', '^nix/'], | 488 ['exclude', '^nix/'], |
492 ], | 489 ], |
493 'sources!': [ | 490 'sources!': [ |
494 'atomicops_internals_x86_gcc.cc', | 491 'atomicops_internals_x86_gcc.cc', |
495 'message_pump_glib.cc', | 492 'message_pump_glib.cc', |
496 'message_pump_aurax11.cc', | 493 'message_pump_aurax11.cc', |
497 ], | 494 ], |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
610 ['<(chromeos)!=1 or >(nacl_untrusted_build)==1', { | 607 ['<(chromeos)!=1 or >(nacl_untrusted_build)==1', { |
611 'sources/': [ | 608 'sources/': [ |
612 ['exclude', '^chromeos/'], | 609 ['exclude', '^chromeos/'], |
613 ], | 610 ], |
614 }], | 611 }], |
615 ], | 612 ], |
616 }], | 613 }], |
617 ], | 614 ], |
618 }, | 615 }, |
619 } | 616 } |
OLD | NEW |