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

Side by Side Diff: chromeos/chromeos.gyp

Issue 10916123: Add is_fullscreen to video updates (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 # 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'chromeos', 11 'target_name': 'chromeos',
12 'type': '<(component)', 12 'type': '<(component)',
13 'dependencies': [ 13 'dependencies': [
14 '../base/base.gyp:base', 14 '../base/base.gyp:base',
15 '../build/linux/system.gyp:dbus', 15 '../build/linux/system.gyp:dbus',
16 '../dbus/dbus.gyp:dbus', 16 '../dbus/dbus.gyp:dbus',
17 '../net/net.gyp:net', 17 '../net/net.gyp:net',
18 '../third_party/libxml/libxml.gyp:libxml', 18 '../third_party/libxml/libxml.gyp:libxml',
19 'power_state_control_proto', 19 'power_state_control_proto',
20 'power_supply_properties_proto', 20 'power_supply_properties_proto',
21 'video_activity_update_proto',
21 ], 22 ],
22 'defines': [ 23 'defines': [
23 'CHROMEOS_IMPLEMENTATION', 24 'CHROMEOS_IMPLEMENTATION',
24 ], 25 ],
25 'sources': [ 26 'sources': [
26 'chromeos_export.h', 27 'chromeos_export.h',
27 'chromeos_switches.cc', 28 'chromeos_switches.cc',
28 'chromeos_switches.h', 29 'chromeos_switches.h',
29 'cryptohome/async_method_caller.cc', 30 'cryptohome/async_method_caller.cc',
30 'cryptohome/async_method_caller.h', 31 'cryptohome/async_method_caller.h',
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 'type': 'static_library', 284 'type': 'static_library',
284 'sources': [ 285 'sources': [
285 '../third_party/cros_system_api/dbus/power_supply_properties.proto', 286 '../third_party/cros_system_api/dbus/power_supply_properties.proto',
286 ], 287 ],
287 'variables': { 288 'variables': {
288 'proto_in_dir': '../third_party/cros_system_api/dbus/', 289 'proto_in_dir': '../third_party/cros_system_api/dbus/',
289 'proto_out_dir': 'chromeos/dbus', 290 'proto_out_dir': 'chromeos/dbus',
290 }, 291 },
291 'includes': ['../build/protoc.gypi'], 292 'includes': ['../build/protoc.gypi'],
292 }, 293 },
294 {
295 # Protobuf compiler / generator for the VideoActivityUpdate protocol
296 # buffer.
297 'target_name': 'video_activity_update_proto',
298 'type': 'static_library',
299 'sources': [
300 '../third_party/cros_system_api/dbus/video_activity_update.proto',
301 ],
302 'variables': {
303 'proto_in_dir': '../third_party/cros_system_api/dbus/',
304 'proto_out_dir': 'chromeos/dbus',
305 },
306 'includes': ['../build/protoc.gypi'],
307 },
293 ], 308 ],
294 } 309 }
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/power/video_activity_notifier.cc ('k') | chromeos/dbus/mock_power_manager_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698