| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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', | 47 '../webkit/support/webkit_support.gyp:blob', |
| 48 '../webkit/support/webkit_support.gyp:database', | 48 '../webkit/support/webkit_support.gyp:database', |
| 49 '../webkit/support/webkit_support.gyp:fileapi', | 49 '../webkit/support/webkit_support.gyp:fileapi', |
| 50 '../webkit/support/webkit_support.gyp:glue', | 50 '../webkit/support/webkit_support.gyp:glue', |
| 51 '../webkit/support/webkit_support.gyp:quota', | 51 '../webkit/support/webkit_support.gyp:quota', |
| 52 '../webkit/support/webkit_support.gyp:user_agent', |
| 52 '../webkit/support/webkit_support.gyp:webkit_base', | 53 '../webkit/support/webkit_support.gyp:webkit_base', |
| 53 '../webkit/support/webkit_support.gyp:webkit_resources', | 54 '../webkit/support/webkit_support.gyp:webkit_resources', |
| 54 '../webkit/support/webkit_support.gyp:webkit_user_agent', | |
| 55 ], | 55 ], |
| 56 'include_dirs': [ | 56 'include_dirs': [ |
| 57 '..', | 57 '..', |
| 58 '<(INTERMEDIATE_DIR)', | 58 '<(INTERMEDIATE_DIR)', |
| 59 ], | 59 ], |
| 60 'sources': [ | 60 'sources': [ |
| 61 # All .cc, .h, .m, and .mm files under browser/extensions except for | 61 # All .cc, .h, .m, and .mm files under browser/extensions except for |
| 62 # tests and mocks. | 62 # tests and mocks. |
| 63 'browser/extensions/active_tab_permission_manager.cc', | 63 'browser/extensions/active_tab_permission_manager.cc', |
| 64 'browser/extensions/active_tab_permission_manager.h', | 64 'browser/extensions/active_tab_permission_manager.h', |
| (...skipping 747 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 812 'browser/extensions/app_host/binaries_installer.h', | 812 'browser/extensions/app_host/binaries_installer.h', |
| 813 'browser/extensions/app_host/binaries_installer_internal.cc', | 813 'browser/extensions/app_host/binaries_installer_internal.cc', |
| 814 'browser/extensions/app_host/binaries_installer_internal.h', | 814 'browser/extensions/app_host/binaries_installer_internal.h', |
| 815 ], | 815 ], |
| 816 }, | 816 }, |
| 817 ], | 817 ], |
| 818 }, ], # 'OS=="win"' | 818 }, ], # 'OS=="win"' |
| 819 ], # 'conditions' | 819 ], # 'conditions' |
| 820 } | 820 } |
| 821 | 821 |
| OLD | NEW |