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