| 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 29 matching lines...) Expand all Loading... |
| 40 '../third_party/libusb/libusb.gyp:libusb', | 40 '../third_party/libusb/libusb.gyp:libusb', |
| 41 '../ui/base/strings/ui_strings.gyp:ui_strings', | 41 '../ui/base/strings/ui_strings.gyp:ui_strings', |
| 42 '../ui/ui.gyp:ui', | 42 '../ui/ui.gyp:ui', |
| 43 '../ui/ui.gyp:ui_resources', | 43 '../ui/ui.gyp:ui_resources', |
| 44 '../webkit/support/webkit_support.gyp:appcache', | 44 '../webkit/support/webkit_support.gyp:appcache', |
| 45 '../webkit/support/webkit_support.gyp:blob', | 45 '../webkit/support/webkit_support.gyp:blob', |
| 46 '../webkit/support/webkit_support.gyp:database', | 46 '../webkit/support/webkit_support.gyp:database', |
| 47 '../webkit/support/webkit_support.gyp:fileapi', | 47 '../webkit/support/webkit_support.gyp:fileapi', |
| 48 '../webkit/support/webkit_support.gyp:glue', | 48 '../webkit/support/webkit_support.gyp:glue', |
| 49 '../webkit/support/webkit_support.gyp:quota', | 49 '../webkit/support/webkit_support.gyp:quota', |
| 50 '../webkit/support/webkit_support.gyp:webkit_base', |
| 50 '../webkit/support/webkit_support.gyp:webkit_resources', | 51 '../webkit/support/webkit_support.gyp:webkit_resources', |
| 51 '../webkit/support/webkit_support.gyp:webkit_user_agent', | 52 '../webkit/support/webkit_support.gyp:webkit_user_agent', |
| 52 ], | 53 ], |
| 53 'include_dirs': [ | 54 'include_dirs': [ |
| 54 '..', | 55 '..', |
| 55 '<(INTERMEDIATE_DIR)', | 56 '<(INTERMEDIATE_DIR)', |
| 56 ], | 57 ], |
| 57 'sources': [ | 58 'sources': [ |
| 58 # All .cc, .h, .m, and .mm files under browser/extensions except for | 59 # All .cc, .h, .m, and .mm files under browser/extensions except for |
| 59 # tests and mocks. | 60 # tests and mocks. |
| (...skipping 709 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 769 'sources': [ | 770 'sources': [ |
| 770 'browser/extensions/app_host.rc', | 771 'browser/extensions/app_host.rc', |
| 771 'browser/extensions/app_host_stub_main.cc', | 772 'browser/extensions/app_host_stub_main.cc', |
| 772 ], | 773 ], |
| 773 }, | 774 }, |
| 774 ], | 775 ], |
| 775 }, ], # 'OS=="win"' | 776 }, ], # 'OS=="win"' |
| 776 ], # 'conditions' | 777 ], # 'conditions' |
| 777 } | 778 } |
| 778 | 779 |
| OLD | NEW |