| 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 898 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 909 'browser/extensions/window_controller_list.cc', | 909 'browser/extensions/window_controller_list.cc', |
| 910 'browser/extensions/window_controller_list.h', | 910 'browser/extensions/window_controller_list.h', |
| 911 'browser/extensions/window_controller_list_observer.h', | 911 'browser/extensions/window_controller_list_observer.h', |
| 912 ], | 912 ], |
| 913 'conditions': [ | 913 'conditions': [ |
| 914 ['chromeos==1', { | 914 ['chromeos==1', { |
| 915 'dependencies': [ | 915 'dependencies': [ |
| 916 '../build/linux/system.gyp:dbus', | 916 '../build/linux/system.gyp:dbus', |
| 917 '../chromeos/ime/input_method.gyp:gencode', | 917 '../chromeos/ime/input_method.gyp:gencode', |
| 918 '../third_party/libevent/libevent.gyp:libevent', | 918 '../third_party/libevent/libevent.gyp:libevent', |
| 919 'contacts_proto', | |
| 920 ], | 919 ], |
| 921 'sources!': [ | 920 'sources!': [ |
| 922 'browser/extensions/api/audio/audio_service.cc', | 921 'browser/extensions/api/audio/audio_service.cc', |
| 923 'browser/extensions/api/feedback_private/feedback_service_nonchromeo
s.cc', | 922 'browser/extensions/api/feedback_private/feedback_service_nonchromeo
s.cc', |
| 924 'browser/extensions/api/image_writer_private/operation_nonchromeos.c
c', | 923 'browser/extensions/api/image_writer_private/operation_nonchromeos.c
c', |
| 925 'browser/extensions/api/system_display/display_info_provider_aura.cc
', | 924 'browser/extensions/api/system_display/display_info_provider_aura.cc
', |
| 926 'browser/extensions/default_apps.cc', | 925 'browser/extensions/default_apps.cc', |
| 927 'browser/extensions/default_apps.h', | 926 'browser/extensions/default_apps.h', |
| 928 ], | 927 ], |
| 929 'sources': [ | 928 'sources': [ |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1214 # Protobuf compiler / generator for chrome.cast.channel-related protocol b
uffers. | 1213 # Protobuf compiler / generator for chrome.cast.channel-related protocol b
uffers. |
| 1215 'target_name': 'cast_channel_proto', | 1214 'target_name': 'cast_channel_proto', |
| 1216 'type': 'static_library', | 1215 'type': 'static_library', |
| 1217 'sources': [ 'browser/extensions/api/cast_channel/cast_channel.proto' ], | 1216 'sources': [ 'browser/extensions/api/cast_channel/cast_channel.proto' ], |
| 1218 'variables': { | 1217 'variables': { |
| 1219 'proto_in_dir': 'browser/extensions/api/cast_channel', | 1218 'proto_in_dir': 'browser/extensions/api/cast_channel', |
| 1220 'proto_out_dir': 'chrome/browser/extensions/api/cast_channel', | 1219 'proto_out_dir': 'chrome/browser/extensions/api/cast_channel', |
| 1221 }, | 1220 }, |
| 1222 'includes': [ '../build/protoc.gypi' ] | 1221 'includes': [ '../build/protoc.gypi' ] |
| 1223 }, | 1222 }, |
| 1224 ], | |
| 1225 'conditions': [ | |
| 1226 ['chromeos==1', { | |
| 1227 'targets': [ | |
| 1228 { | |
| 1229 # Protobuf compiler / generator for contacts-related protocol buffers. | |
| 1230 'target_name': 'contacts_proto', | |
| 1231 'type': 'static_library', | |
| 1232 'sources': [ 'browser/chromeos/contacts/contact.proto' ], | |
| 1233 'variables': { | |
| 1234 'proto_in_dir': 'browser/chromeos/contacts', | |
| 1235 'proto_out_dir': 'chrome/browser/chromeos/contacts', | |
| 1236 }, | |
| 1237 'includes': [ '../build/protoc.gypi' ] | |
| 1238 }, | |
| 1239 ], | |
| 1240 },], # 'chromeos=1' | |
| 1241 ], # 'conditions' | 1223 ], # 'conditions' |
| 1242 } | 1224 } |
| OLD | NEW |