Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(231)

Side by Side Diff: chrome/chrome_browser_chromeos.gypi

Issue 10899037: Refactoring bluetooth API code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing styles and tess. Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'browser_chromeos', 9 'target_name': 'browser_chromeos',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 'browser/chromeos/accessibility/accessibility_util.h', 119 'browser/chromeos/accessibility/accessibility_util.h',
120 'browser/chromeos/audio/audio_handler.cc', 120 'browser/chromeos/audio/audio_handler.cc',
121 'browser/chromeos/audio/audio_handler.h', 121 'browser/chromeos/audio/audio_handler.h',
122 'browser/chromeos/audio/audio_mixer.h', 122 'browser/chromeos/audio/audio_mixer.h',
123 'browser/chromeos/audio/audio_mixer_alsa.cc', 123 'browser/chromeos/audio/audio_mixer_alsa.cc',
124 'browser/chromeos/audio/audio_mixer_alsa.h', 124 'browser/chromeos/audio/audio_mixer_alsa.h',
125 'browser/chromeos/audio/audio_mixer_cras.cc', 125 'browser/chromeos/audio/audio_mixer_cras.cc',
126 'browser/chromeos/audio/audio_mixer_cras.h', 126 'browser/chromeos/audio/audio_mixer_cras.h',
127 'browser/chromeos/background/ash_user_wallpaper_delegate.cc', 127 'browser/chromeos/background/ash_user_wallpaper_delegate.cc',
128 'browser/chromeos/background/ash_user_wallpaper_delegate.h', 128 'browser/chromeos/background/ash_user_wallpaper_delegate.h',
129 'browser/chromeos/bluetooth/bluetooth_adapter.cc',
130 'browser/chromeos/bluetooth/bluetooth_adapter.h', 129 'browser/chromeos/bluetooth/bluetooth_adapter.h',
131 'browser/chromeos/bluetooth/bluetooth_device.cc', 130 'browser/chromeos/bluetooth/bluetooth_adapter_dbus.cc',
131 'browser/chromeos/bluetooth/bluetooth_adapter_dbus.h',
132 'browser/chromeos/bluetooth/bluetooth_device.h', 132 'browser/chromeos/bluetooth/bluetooth_device.h',
133 'browser/chromeos/bluetooth/bluetooth_device_dbus.cc',
134 'browser/chromeos/bluetooth/bluetooth_device_dbus.h',
133 'browser/chromeos/bluetooth/bluetooth_service_record.cc', 135 'browser/chromeos/bluetooth/bluetooth_service_record.cc',
134 'browser/chromeos/bluetooth/bluetooth_service_record.h', 136 'browser/chromeos/bluetooth/bluetooth_service_record.h',
135 'browser/chromeos/bluetooth/bluetooth_socket.cc', 137 'browser/chromeos/bluetooth/bluetooth_service_record_interface.h',
keybuk 2012/09/13 23:57:30 where is this file? I couldn't find it in the CL
youngki 2012/09/17 21:53:02 Hm.. I am not sure why the compiler did not compla
136 'browser/chromeos/bluetooth/bluetooth_socket.h', 138 'browser/chromeos/bluetooth/bluetooth_socket.h',
139 'browser/chromeos/bluetooth/bluetooth_socket_posix.cc',
140 'browser/chromeos/bluetooth/bluetooth_socket_posix.h',
137 'browser/chromeos/bluetooth/bluetooth_utils.cc', 141 'browser/chromeos/bluetooth/bluetooth_utils.cc',
138 'browser/chromeos/bluetooth/bluetooth_utils.h', 142 'browser/chromeos/bluetooth/bluetooth_utils.h',
139 'browser/chromeos/boot_times_loader.cc', 143 'browser/chromeos/boot_times_loader.cc',
140 'browser/chromeos/boot_times_loader.h', 144 'browser/chromeos/boot_times_loader.h',
141 'browser/chromeos/choose_mobile_network_dialog.cc', 145 'browser/chromeos/choose_mobile_network_dialog.cc',
142 'browser/chromeos/choose_mobile_network_dialog.h', 146 'browser/chromeos/choose_mobile_network_dialog.h',
143 'browser/chromeos/chrome_browser_main_chromeos.cc', 147 'browser/chromeos/chrome_browser_main_chromeos.cc',
144 'browser/chromeos/chrome_browser_main_chromeos.h', 148 'browser/chromeos/chrome_browser_main_chromeos.h',
145 'browser/chromeos/contacts/contact_database.cc', 149 'browser/chromeos/contacts/contact_database.cc',
146 'browser/chromeos/contacts/contact_database.h', 150 'browser/chromeos/contacts/contact_database.h',
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after
753 'type': 'static_library', 757 'type': 'static_library',
754 'sources': [ 'browser/chromeos/gdata/drive.proto' ], 758 'sources': [ 'browser/chromeos/gdata/drive.proto' ],
755 'variables': { 759 'variables': {
756 'proto_in_dir': 'browser/chromeos/gdata', 760 'proto_in_dir': 'browser/chromeos/gdata',
757 'proto_out_dir': 'chrome/browser/chromeos/gdata', 761 'proto_out_dir': 'chrome/browser/chromeos/gdata',
758 }, 762 },
759 'includes': [ '../build/protoc.gypi' ] 763 'includes': [ '../build/protoc.gypi' ]
760 }, 764 },
761 ], 765 ],
762 } 766 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698