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