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