| 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 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 706 'app/dummy_main_functions.cc', | 706 'app/dummy_main_functions.cc', |
| 707 | 707 |
| 708 # TODO(bradnelson): once automatic generation of 64 bit targets on | 708 # TODO(bradnelson): once automatic generation of 64 bit targets on |
| 709 # Windows is ready, take this out and add a dependency on | 709 # Windows is ready, take this out and add a dependency on |
| 710 # content_common.gypi and common.gypi in nacl_win64_dependencies | 710 # content_common.gypi and common.gypi in nacl_win64_dependencies |
| 711 # and get rid of the common_constants.gypi which was added as a hack | 711 # and get rid of the common_constants.gypi which was added as a hack |
| 712 # to avoid making common compile on 64 bit on Windows. | 712 # to avoid making common compile on 64 bit on Windows. |
| 713 '../chrome/common/chrome_content_client.cc', | 713 '../chrome/common/chrome_content_client.cc', |
| 714 '../chrome/common/chrome_content_plugin_client.cc', | 714 '../chrome/common/chrome_content_plugin_client.cc', |
| 715 '../content/app/content_main.cc', | 715 '../content/app/content_main.cc', |
| 716 '../content/app/content_main_delegate.cc', |
| 716 '../content/common/child_process.cc', | 717 '../content/common/child_process.cc', |
| 717 '../content/common/child_thread.cc', | 718 '../content/common/child_thread.cc', |
| 718 '../content/common/content_client.cc', | 719 '../content/common/content_client.cc', |
| 719 '../content/common/content_constants.cc', | 720 '../content/common/content_constants.cc', |
| 720 '../content/common/content_counters.cc', | 721 '../content/common/content_counters.cc', |
| 721 '../content/common/content_message_generator.cc', | 722 '../content/common/content_message_generator.cc', |
| 722 '../content/common/content_paths.cc', | 723 '../content/common/content_paths.cc', |
| 723 '../content/common/content_switches.cc', | 724 '../content/common/content_switches.cc', |
| 724 '../content/common/debug_flags.cc', | 725 '../content/common/debug_flags.cc', |
| 725 '../content/common/hi_res_timer_manager_win.cc', | 726 '../content/common/hi_res_timer_manager_win.cc', |
| (...skipping 21 matching lines...) Expand all Loading... |
| 747 'LinkIncremental': '<(msvs_debug_link_nonincremental)', | 748 'LinkIncremental': '<(msvs_debug_link_nonincremental)', |
| 748 }, | 749 }, |
| 749 }, | 750 }, |
| 750 }, | 751 }, |
| 751 }, | 752 }, |
| 752 }, # target chrome_dll | 753 }, # target chrome_dll |
| 753 ], | 754 ], |
| 754 }], | 755 }], |
| 755 ], | 756 ], |
| 756 } | 757 } |
| OLD | NEW |