OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'browser_extensions', | 8 'target_name': 'browser_extensions', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
(...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
683 'browser/extensions/extension_install_ui_default.h', | 683 'browser/extensions/extension_install_ui_default.h', |
684 'browser/extensions/api/usb/usb_api.cc', | 684 'browser/extensions/api/usb/usb_api.cc', |
685 'browser/extensions/api/usb/usb_api.h', | 685 'browser/extensions/api/usb/usb_api.h', |
686 'browser/extensions/api/usb/usb_device_resource.cc', | 686 'browser/extensions/api/usb/usb_device_resource.cc', |
687 'browser/extensions/api/usb/usb_device_resource.h', | 687 'browser/extensions/api/usb/usb_device_resource.h', |
688 ], | 688 ], |
689 }], | 689 }], |
690 ], | 690 ], |
691 }, | 691 }, |
692 ], | 692 ], |
| 693 'conditions': [ |
| 694 ['OS=="win"', { |
| 695 'targets': [ |
| 696 { |
| 697 'target_name': 'app_host', |
| 698 'type': 'executable', |
| 699 'include_dirs': [ |
| 700 '..', |
| 701 ], |
| 702 'direct_dependent_settings': { |
| 703 'include_dirs': [ |
| 704 '..', |
| 705 ], |
| 706 }, |
| 707 'dependencies': [ |
| 708 '<(DEPTH)/base/base.gyp:base', |
| 709 '<(DEPTH)/chrome/chrome.gyp:launcher_support', |
| 710 ], |
| 711 'sources': [ |
| 712 'browser/extensions/app_host_stub_main.cc', |
| 713 ], |
| 714 }, |
| 715 ], |
| 716 }, ], # 'OS=="win"' |
| 717 ], # 'conditions' |
693 } | 718 } |
694 | 719 |
OLD | NEW |