| 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 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 653 }], | 653 }], |
| 654 ['chromeos==1',{ | 654 ['chromeos==1',{ |
| 655 'sources/': [ | 655 'sources/': [ |
| 656 ['exclude', '^browser/extensions/extension_tts_api_linux.cc'], | 656 ['exclude', '^browser/extensions/extension_tts_api_linux.cc'], |
| 657 ], | 657 ], |
| 658 'dependencies': [ | 658 'dependencies': [ |
| 659 '../dbus/dbus.gyp:dbus', | 659 '../dbus/dbus.gyp:dbus', |
| 660 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 660 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 661 '../third_party/protobuf/protobuf.gyp:protoc#host', | 661 '../third_party/protobuf/protobuf.gyp:protoc#host', |
| 662 ], | 662 ], |
| 663 'conditions': [ | |
| 664 ['system_libcros==0', { | |
| 665 'dependencies': [ | |
| 666 '../third_party/cros/cros_api.gyp:cros_api', | |
| 667 ], | |
| 668 'include_dirs': [ | |
| 669 '../third_party/' | |
| 670 ], | |
| 671 }], | |
| 672 ], | |
| 673 }], | 663 }], |
| 674 ], | 664 ], |
| 675 }], | 665 }], |
| 676 ['OS=="android"', { | 666 ['OS=="android"', { |
| 677 'sources': [ | 667 'sources': [ |
| 678 'browser/extensions/extension_install_ui_android.cc', | 668 'browser/extensions/extension_install_ui_android.cc', |
| 679 'browser/extensions/extension_install_ui_android.h', | 669 'browser/extensions/extension_install_ui_android.h', |
| 680 ], | 670 ], |
| 681 'sources!': [ | 671 'sources!': [ |
| 682 'browser/extensions/extension_install_ui_default.cc', | 672 'browser/extensions/extension_install_ui_default.cc', |
| 683 'browser/extensions/extension_install_ui_default.h', | 673 'browser/extensions/extension_install_ui_default.h', |
| 684 'browser/extensions/api/usb/usb_api.cc', | 674 'browser/extensions/api/usb/usb_api.cc', |
| 685 'browser/extensions/api/usb/usb_api.h', | 675 'browser/extensions/api/usb/usb_api.h', |
| 686 'browser/extensions/api/usb/usb_device_resource.cc', | 676 'browser/extensions/api/usb/usb_device_resource.cc', |
| 687 'browser/extensions/api/usb/usb_device_resource.h', | 677 'browser/extensions/api/usb/usb_device_resource.h', |
| 688 ], | 678 ], |
| 689 }], | 679 }], |
| 690 ], | 680 ], |
| 691 }, | 681 }, |
| 692 ], | 682 ], |
| 693 } | 683 } |
| 694 | 684 |
| OLD | NEW |