| 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 26 matching lines...) Expand all Loading... |
| 37 '../third_party/bzip2/bzip2.gyp:bzip2', | 37 '../third_party/bzip2/bzip2.gyp:bzip2', |
| 38 '../third_party/icu/icu.gyp:icui18n', | 38 '../third_party/icu/icu.gyp:icui18n', |
| 39 '../third_party/icu/icu.gyp:icuuc', | 39 '../third_party/icu/icu.gyp:icuuc', |
| 40 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 40 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
| 41 '../third_party/libusb/libusb.gyp:libusb', | 41 '../third_party/libusb/libusb.gyp:libusb', |
| 42 '../third_party/re2/re2.gyp:re2', | 42 '../third_party/re2/re2.gyp:re2', |
| 43 '../ui/base/strings/ui_strings.gyp:ui_strings', | 43 '../ui/base/strings/ui_strings.gyp:ui_strings', |
| 44 '../ui/ui.gyp:ui', | 44 '../ui/ui.gyp:ui', |
| 45 '../ui/ui.gyp:ui_resources', | 45 '../ui/ui.gyp:ui_resources', |
| 46 '../webkit/support/webkit_support.gyp:appcache', | 46 '../webkit/support/webkit_support.gyp:appcache', |
| 47 '../webkit/support/webkit_support.gyp:blob', | |
| 48 '../webkit/support/webkit_support.gyp:database', | 47 '../webkit/support/webkit_support.gyp:database', |
| 49 '../webkit/support/webkit_support.gyp:fileapi', | |
| 50 '../webkit/support/webkit_support.gyp:glue', | 48 '../webkit/support/webkit_support.gyp:glue', |
| 51 '../webkit/support/webkit_support.gyp:quota', | 49 '../webkit/support/webkit_support.gyp:quota', |
| 52 '../webkit/support/webkit_support.gyp:user_agent', | 50 '../webkit/support/webkit_support.gyp:user_agent', |
| 53 '../webkit/support/webkit_support.gyp:webkit_base', | 51 '../webkit/support/webkit_support.gyp:webkit_base', |
| 54 '../webkit/support/webkit_support.gyp:webkit_resources', | 52 '../webkit/support/webkit_support.gyp:webkit_resources', |
| 53 '../webkit/support/webkit_support.gyp:webkit_storage', |
| 55 ], | 54 ], |
| 56 'include_dirs': [ | 55 'include_dirs': [ |
| 57 '..', | 56 '..', |
| 58 '<(INTERMEDIATE_DIR)', | 57 '<(INTERMEDIATE_DIR)', |
| 59 ], | 58 ], |
| 60 'sources': [ | 59 'sources': [ |
| 61 # All .cc, .h, .m, and .mm files under browser/extensions except for | 60 # All .cc, .h, .m, and .mm files under browser/extensions except for |
| 62 # tests and mocks. | 61 # tests and mocks. |
| 63 'browser/extensions/active_tab_permission_granter.cc', | 62 'browser/extensions/active_tab_permission_granter.cc', |
| 64 'browser/extensions/active_tab_permission_granter.h', | 63 'browser/extensions/active_tab_permission_granter.h', |
| (...skipping 784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 849 'browser/extensions/app_host/update.cc', | 848 'browser/extensions/app_host/update.cc', |
| 850 'browser/extensions/app_host/update.h', | 849 'browser/extensions/app_host/update.h', |
| 851 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/app_host_exe_version.rc', | 850 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/app_host_exe_version.rc', |
| 852 ], | 851 ], |
| 853 }, | 852 }, |
| 854 ], | 853 ], |
| 855 }, ], # 'OS=="win"' | 854 }, ], # 'OS=="win"' |
| 856 ], # 'conditions' | 855 ], # 'conditions' |
| 857 } | 856 } |
| 858 | 857 |
| OLD | NEW |