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 1010 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1021 ], | 1021 ], |
1022 }], | 1022 }], |
1023 ['enable_extensions==0', { | 1023 ['enable_extensions==0', { |
1024 'sources!': [ | 1024 'sources!': [ |
1025 'browser/extensions/browser_context_keyed_service_factories.cc', | 1025 'browser/extensions/browser_context_keyed_service_factories.cc', |
1026 'browser/extensions/browser_context_keyed_service_factories.h', | 1026 'browser/extensions/browser_context_keyed_service_factories.h', |
1027 'browser/extensions/menu_manager.cc', | 1027 'browser/extensions/menu_manager.cc', |
1028 'browser/extensions/menu_manager.h', | 1028 'browser/extensions/menu_manager.h', |
1029 'browser/extensions/menu_manager_factory.cc', | 1029 'browser/extensions/menu_manager_factory.cc', |
1030 'browser/extensions/menu_manager_factory.h', | 1030 'browser/extensions/menu_manager_factory.h', |
| 1031 'browser/extensions/tab_helper.cc', |
| 1032 'browser/extensions/tab_helper.h', |
1031 ], | 1033 ], |
1032 'sources/': [ | 1034 'sources/': [ |
1033 # Handle files in browser/extensions/api. Exclude everything by defa
ult, white list | 1035 # Handle files in browser/extensions/api. Exclude everything by defa
ult, white list |
1034 # files if they are needed for linking. | 1036 # files if they are needed for linking. |
1035 # TODO: The re-includes should go away or shrink as extensions are r
efactored to be | 1037 # TODO: The re-includes should go away or shrink as extensions are r
efactored to be |
1036 # less intertwined in the main codebase. | 1038 # less intertwined in the main codebase. |
1037 ['exclude', '^browser/extensions/api/'], | 1039 ['exclude', '^browser/extensions/api/'], |
1038 ['exclude', '^browser/extensions/.*_api\.cc$'], | 1040 ['exclude', '^browser/extensions/.*_api\.cc$'], |
1039 ['include', '^browser/extensions/api/activity_log_private/activity_l
og_private_api.cc'], | 1041 ['include', '^browser/extensions/api/activity_log_private/activity_l
og_private_api.cc'], |
1040 ['include', '^browser/extensions/api/activity_log_private/activity_l
og_private_api.h'], | 1042 ['include', '^browser/extensions/api/activity_log_private/activity_l
og_private_api.h'], |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1255 'type': 'static_library', | 1257 'type': 'static_library', |
1256 'sources': [ 'browser/extensions/api/cast_channel/cast_channel.proto' ], | 1258 'sources': [ 'browser/extensions/api/cast_channel/cast_channel.proto' ], |
1257 'variables': { | 1259 'variables': { |
1258 'proto_in_dir': 'browser/extensions/api/cast_channel', | 1260 'proto_in_dir': 'browser/extensions/api/cast_channel', |
1259 'proto_out_dir': 'chrome/browser/extensions/api/cast_channel', | 1261 'proto_out_dir': 'chrome/browser/extensions/api/cast_channel', |
1260 }, | 1262 }, |
1261 'includes': [ '../build/protoc.gypi' ] | 1263 'includes': [ '../build/protoc.gypi' ] |
1262 }, | 1264 }, |
1263 ], # 'conditions' | 1265 ], # 'conditions' |
1264 } | 1266 } |
OLD | NEW |