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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 'ui_resources.gypi', | 10 'ui_resources.gypi', |
(...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
614 ], | 614 ], |
615 'include_dirs': [ | 615 'include_dirs': [ |
616 '../', | 616 '../', |
617 '../third_party/wtl/include', | 617 '../third_party/wtl/include', |
618 ], | 618 ], |
619 'msvs_settings': { | 619 'msvs_settings': { |
620 'VCLinkerTool': { | 620 'VCLinkerTool': { |
621 'DelayLoadDLLs': [ | 621 'DelayLoadDLLs': [ |
622 'd2d1.dll', | 622 'd2d1.dll', |
623 'd3d10_1.dll', | 623 'd3d10_1.dll', |
| 624 'dwmapi.dll', |
624 ], | 625 ], |
625 'AdditionalDependencies': [ | 626 'AdditionalDependencies': [ |
626 'd2d1.lib', | 627 'd2d1.lib', |
627 'd3d10_1.lib', | 628 'd3d10_1.lib', |
| 629 'dwmapi.lib', |
628 ], | 630 ], |
629 }, | 631 }, |
630 }, | 632 }, |
631 'link_settings': { | 633 'link_settings': { |
632 'libraries': [ | 634 'libraries': [ |
633 '-limm32.lib', | 635 '-limm32.lib', |
634 '-ld2d1.lib', | 636 '-ld2d1.lib', |
| 637 '-ldwmapi.lib', |
635 '-loleacc.lib', | 638 '-loleacc.lib', |
636 ], | 639 ], |
637 }, | 640 }, |
638 },{ # OS!="win" | 641 },{ # OS!="win" |
639 'conditions': [ | 642 'conditions': [ |
640 ['use_aura==0', { | 643 ['use_aura==0', { |
641 'sources!': [ | 644 'sources!': [ |
642 'base/view_prop.cc', | 645 'base/view_prop.cc', |
643 'base/view_prop.h', | 646 'base/view_prop.h', |
644 ], | 647 ], |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
758 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ | 761 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ |
759 'os.chmod(\'<(ui_copy_dest)\', 0700)' | 762 'os.chmod(\'<(ui_copy_dest)\', 0700)' |
760 ] | 763 ] |
761 } | 764 } |
762 ], | 765 ], |
763 }, | 766 }, |
764 ], | 767 ], |
765 }], | 768 }], |
766 ], | 769 ], |
767 } | 770 } |
OLD | NEW |