| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 'include_dirs': [ | 49 'include_dirs': [ |
| 50 '..', | 50 '..', |
| 51 '<(INTERMEDIATE_DIR)', | 51 '<(INTERMEDIATE_DIR)', |
| 52 ], | 52 ], |
| 53 'sources': [ | 53 'sources': [ |
| 54 # All .cc, .h, .m, and .mm files under browser/extensions except for | 54 # All .cc, .h, .m, and .mm files under browser/extensions except for |
| 55 # tests and mocks. | 55 # tests and mocks. |
| 56 '../extensions/browser/extension_prefs_scope.h', | 56 '../extensions/browser/extension_prefs_scope.h', |
| 57 '../extensions/browser/extension_error.cc', | 57 '../extensions/browser/extension_error.cc', |
| 58 '../extensions/browser/extension_error.h', | 58 '../extensions/browser/extension_error.h', |
| 59 '../extensions/browser/file_highlighter.cc', |
| 60 '../extensions/browser/file_highlighter.h', |
| 59 '../extensions/browser/file_reader.cc', | 61 '../extensions/browser/file_reader.cc', |
| 60 '../extensions/browser/file_reader.h', | 62 '../extensions/browser/file_reader.h', |
| 61 '../extensions/browser/manifest_highlighter.cc', | |
| 62 '../extensions/browser/manifest_highlighter.h', | |
| 63 '../extensions/browser/pref_names.cc', | 63 '../extensions/browser/pref_names.cc', |
| 64 '../extensions/browser/pref_names.h', | 64 '../extensions/browser/pref_names.h', |
| 65 '../extensions/browser/view_type_utils.cc', | 65 '../extensions/browser/view_type_utils.cc', |
| 66 '../extensions/browser/view_type_utils.h', | 66 '../extensions/browser/view_type_utils.h', |
| 67 'browser/apps/shortcut_manager.cc', | 67 'browser/apps/shortcut_manager.cc', |
| 68 'browser/apps/shortcut_manager.h', | 68 'browser/apps/shortcut_manager.h', |
| 69 'browser/apps/shortcut_manager_factory.cc', | 69 'browser/apps/shortcut_manager_factory.cc', |
| 70 'browser/apps/shortcut_manager_factory.h', | 70 'browser/apps/shortcut_manager_factory.h', |
| 71 'browser/extensions/active_tab_permission_granter.cc', | 71 'browser/extensions/active_tab_permission_granter.cc', |
| 72 'browser/extensions/active_tab_permission_granter.h', | 72 'browser/extensions/active_tab_permission_granter.h', |
| (...skipping 972 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1045 'variables': { | 1045 'variables': { |
| 1046 'proto_in_dir': 'browser/chromeos/contacts', | 1046 'proto_in_dir': 'browser/chromeos/contacts', |
| 1047 'proto_out_dir': 'chrome/browser/chromeos/contacts', | 1047 'proto_out_dir': 'chrome/browser/chromeos/contacts', |
| 1048 }, | 1048 }, |
| 1049 'includes': [ '../build/protoc.gypi' ] | 1049 'includes': [ '../build/protoc.gypi' ] |
| 1050 }, | 1050 }, |
| 1051 ], | 1051 ], |
| 1052 },], # 'chromeos=1' | 1052 },], # 'chromeos=1' |
| 1053 ], # 'conditions' | 1053 ], # 'conditions' |
| 1054 } | 1054 } |
| OLD | NEW |