OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'target_defaults': { | 5 'target_defaults': { |
6 'variables': { | 6 'variables': { |
7 'chrome_dll_target': 0, | 7 'chrome_dll_target': 0, |
8 }, | 8 }, |
9 'target_conditions': [ | 9 'target_conditions': [ |
10 ['chrome_dll_target==1', { | 10 ['chrome_dll_target==1', { |
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
653 '..', | 653 '..', |
654 ], | 654 ], |
655 'dependencies': [ | 655 'dependencies': [ |
656 '<@(nacl_win64_dependencies)', | 656 '<@(nacl_win64_dependencies)', |
657 'chrome_version_resources', | 657 'chrome_version_resources', |
658 'nacl_win64', | 658 'nacl_win64', |
659 '../base/base.gyp:base_i18n_nacl_win64', | 659 '../base/base.gyp:base_i18n_nacl_win64', |
660 ], | 660 ], |
661 'defines': [ | 661 'defines': [ |
662 '<@(nacl_win64_defines)', | 662 '<@(nacl_win64_defines)', |
663 # Required to build gl_switches.cc as part of this binary. | |
664 'GL_IMPLEMENTATION' | |
665 ], | 663 ], |
666 'sources': [ | 664 'sources': [ |
667 'app/chrome_command_ids.h', | 665 'app/chrome_command_ids.h', |
668 'app/chrome_dll_resource.h', | 666 'app/chrome_dll_resource.h', |
669 'app/chrome_main.cc', | 667 'app/chrome_main.cc', |
670 'app/chrome_main_win.cc', | 668 'app/chrome_main_win.cc', |
671 # Parsing is needed for the UserDataDir policy which is read much | 669 # Parsing is needed for the UserDataDir policy which is read much |
672 # earlier than the initialization of the policy/pref system. | 670 # earlier than the initialization of the policy/pref system. |
673 'browser/policy/policy_path_parser_win.cc', | 671 'browser/policy/policy_path_parser_win.cc', |
674 'browser/renderer_host/render_process_host_dummy.cc', | 672 'browser/renderer_host/render_process_host_dummy.cc', |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
734 'LinkIncremental': '<(msvs_debug_link_nonincremental)', | 732 'LinkIncremental': '<(msvs_debug_link_nonincremental)', |
735 }, | 733 }, |
736 }, | 734 }, |
737 }, | 735 }, |
738 }, | 736 }, |
739 }, # target chrome_dll | 737 }, # target chrome_dll |
740 ], | 738 ], |
741 }], | 739 }], |
742 ], | 740 ], |
743 } | 741 } |
OLD | NEW |