| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 589 # Stub entry points for process types that are not supported | 589 # Stub entry points for process types that are not supported |
| 590 # by NaCl Win64 executable | 590 # by NaCl Win64 executable |
| 591 'app/dummy_main_functions.cc', | 591 'app/dummy_main_functions.cc', |
| 592 | 592 |
| 593 # TODO(bradnelson): once automatic generation of 64 bit targets on | 593 # TODO(bradnelson): once automatic generation of 64 bit targets on |
| 594 # Windows is ready, take this out and add a dependency on | 594 # Windows is ready, take this out and add a dependency on |
| 595 # content_common.gypi and common.gypi in nacl_win64_dependencies | 595 # content_common.gypi and common.gypi in nacl_win64_dependencies |
| 596 # and get rid of the common_constants.gypi which was added as a hack | 596 # and get rid of the common_constants.gypi which was added as a hack |
| 597 # to avoid making common compile on 64 bit on Windows. | 597 # to avoid making common compile on 64 bit on Windows. |
| 598 '../chrome/common/chrome_content_client.cc', | 598 '../chrome/common/chrome_content_client.cc', |
| 599 '../chrome/common/chrome_content_gpu_client.cc', |
| 600 '../chrome/common/chrome_content_plugin_client.cc', |
| 599 '../content/common/child_process.cc', | 601 '../content/common/child_process.cc', |
| 600 '../content/common/child_thread.cc', | 602 '../content/common/child_thread.cc', |
| 601 '../content/common/content_client.cc', | 603 '../content/common/content_client.cc', |
| 602 '../content/common/content_paths.cc', | 604 '../content/common/content_paths.cc', |
| 603 '../content/common/content_switches.cc', | 605 '../content/common/content_switches.cc', |
| 604 '../content/common/debug_flags.cc', | 606 '../content/common/debug_flags.cc', |
| 605 '../content/common/hi_res_timer_manager_win.cc', | 607 '../content/common/hi_res_timer_manager_win.cc', |
| 606 '../content/common/notification_details.cc', | 608 '../content/common/notification_details.cc', |
| 607 '../content/common/notification_service.cc', | 609 '../content/common/notification_service.cc', |
| 608 '../content/common/notification_source.cc', | 610 '../content/common/notification_source.cc', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 624 'LinkIncremental': '<(msvs_debug_link_nonincremental)', | 626 'LinkIncremental': '<(msvs_debug_link_nonincremental)', |
| 625 }, | 627 }, |
| 626 }, | 628 }, |
| 627 }, | 629 }, |
| 628 }, | 630 }, |
| 629 }, # target chrome_dll | 631 }, # target chrome_dll |
| 630 ], | 632 ], |
| 631 }], | 633 }], |
| 632 ], | 634 ], |
| 633 } | 635 } |
| OLD | NEW |