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 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
580 'variables': { | 580 'variables': { |
581 'chrome_dll_target': 1, | 581 'chrome_dll_target': 1, |
582 }, | 582 }, |
583 'include_dirs': [ | 583 'include_dirs': [ |
584 '..', | 584 '..', |
585 ], | 585 ], |
586 'dependencies': [ | 586 'dependencies': [ |
587 '<@(nacl_win64_dependencies)', | 587 '<@(nacl_win64_dependencies)', |
588 'chrome_dll_version', | 588 'chrome_dll_version', |
589 'nacl_win64', | 589 'nacl_win64', |
| 590 '../base/base.gyp:base_i18n_nacl_win64', |
590 ], | 591 ], |
591 'defines': [ | 592 'defines': [ |
592 '<@(nacl_win64_defines)', | 593 '<@(nacl_win64_defines)', |
593 ], | 594 ], |
594 'sources': [ | 595 'sources': [ |
595 'app/chrome_command_ids.h', | 596 'app/chrome_command_ids.h', |
596 'app/chrome_dll_resource.h', | 597 'app/chrome_dll_resource.h', |
597 'app/chrome_main.cc', | 598 'app/chrome_main.cc', |
598 'app/chrome_main_win.cc', | 599 'app/chrome_main_win.cc', |
599 # Parsing is needed for the UserDataDir policy which is read much | 600 # Parsing is needed for the UserDataDir policy which is read much |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
660 'LinkIncremental': '<(msvs_debug_link_nonincremental)', | 661 'LinkIncremental': '<(msvs_debug_link_nonincremental)', |
661 }, | 662 }, |
662 }, | 663 }, |
663 }, | 664 }, |
664 }, | 665 }, |
665 }, # target chrome_dll | 666 }, # target chrome_dll |
666 ], | 667 ], |
667 }], | 668 }], |
668 ], | 669 ], |
669 } | 670 } |
OLD | NEW |