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 981 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
992 }], | 992 }], |
993 ['chromeos==1',{ | 993 ['chromeos==1',{ |
994 'dependencies': [ | 994 'dependencies': [ |
995 '../dbus/dbus.gyp:dbus', | 995 '../dbus/dbus.gyp:dbus', |
996 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 996 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
997 '../third_party/protobuf/protobuf.gyp:protoc#host', | 997 '../third_party/protobuf/protobuf.gyp:protoc#host', |
998 ], | 998 ], |
999 }], | 999 }], |
1000 ], | 1000 ], |
1001 }], | 1001 }], |
| 1002 ['use_openssl==1', { |
| 1003 'sources!': [ |
| 1004 # networking_private_crypto.cc uses NSS functions. |
| 1005 'browser/extensions/api/networking_private/networking_private_crypto
.cc', |
| 1006 ], |
| 1007 }], |
1002 ['OS=="android"', { | 1008 ['OS=="android"', { |
1003 'sources': [ | 1009 'sources': [ |
1004 'browser/extensions/extension_error_ui_android.cc', | 1010 'browser/extensions/extension_error_ui_android.cc', |
1005 'browser/extensions/extension_error_ui_android.h', | 1011 'browser/extensions/extension_error_ui_android.h', |
1006 'browser/extensions/extension_tab_util_android.cc', | 1012 'browser/extensions/extension_tab_util_android.cc', |
1007 ], | 1013 ], |
1008 'sources!': [ | 1014 'sources!': [ |
1009 'browser/apps/shortcut_manager.cc', | 1015 'browser/apps/shortcut_manager.cc', |
1010 'browser/apps/shortcut_manager_factory.cc', | 1016 'browser/apps/shortcut_manager_factory.cc', |
1011 'browser/extensions/api/declarative/rules_registry_with_cache.cc', | 1017 'browser/extensions/api/declarative/rules_registry_with_cache.cc', |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1049 'variables': { | 1055 'variables': { |
1050 'proto_in_dir': 'browser/chromeos/contacts', | 1056 'proto_in_dir': 'browser/chromeos/contacts', |
1051 'proto_out_dir': 'chrome/browser/chromeos/contacts', | 1057 'proto_out_dir': 'chrome/browser/chromeos/contacts', |
1052 }, | 1058 }, |
1053 'includes': [ '../build/protoc.gypi' ] | 1059 'includes': [ '../build/protoc.gypi' ] |
1054 }, | 1060 }, |
1055 ], | 1061 ], |
1056 },], # 'chromeos=1' | 1062 },], # 'chromeos=1' |
1057 ], # 'conditions' | 1063 ], # 'conditions' |
1058 } | 1064 } |
OLD | NEW |