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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 9318007: Adding using protobuf based communication for the power information transfer. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rewrote the gypi rule for the protobuf, so to not leak into non-cros builds Created 8 years, 9 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
« no previous file with comments | « chrome/browser/chromeos/dbus/power_manager_client.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'browser', 8 'target_name': 'browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 4460 matching lines...) Expand 10 before | Expand all | Expand 10 after
4471 ['exclude', 'browser/ui/views/status_icons/status_icon_chromeos.cc'] , 4471 ['exclude', 'browser/ui/views/status_icons/status_icon_chromeos.cc'] ,
4472 ['exclude', 'browser/ui/views/status_icons/status_icon_chromeos.h'], 4472 ['exclude', 'browser/ui/views/status_icons/status_icon_chromeos.h'],
4473 ['exclude', 'browser/ui/webui/active_downloads_ui.cc'], 4473 ['exclude', 'browser/ui/webui/active_downloads_ui.cc'],
4474 ], 4474 ],
4475 }, { # chromeos==1 4475 }, { # chromeos==1
4476 'dependencies': [ 4476 'dependencies': [
4477 '../build/linux/system.gyp:dbus-glib', 4477 '../build/linux/system.gyp:dbus-glib',
4478 '../third_party/libevent/libevent.gyp:libevent', 4478 '../third_party/libevent/libevent.gyp:libevent',
4479 '../third_party/mozc/chrome/chromeos/renderer/chromeos_renderer.gyp: mozc_candidates_proto', 4479 '../third_party/mozc/chrome/chromeos/renderer/chromeos_renderer.gyp: mozc_candidates_proto',
4480 'browser/chromeos/input_method/input_method.gyp:gencode', 4480 'browser/chromeos/input_method/input_method.gyp:gencode',
4481 'power_supply_properties_proto',
4481 ], 4482 ],
4482 'sources!': [ 4483 'sources!': [
4483 'browser/background/background_mode_manager_gtk.cc', 4484 'browser/background/background_mode_manager_gtk.cc',
4484 'browser/extensions/default_apps.cc', 4485 'browser/extensions/default_apps.cc',
4485 'browser/extensions/default_apps.h', 4486 'browser/extensions/default_apps.h',
4486 'browser/first_run/upgrade_util.cc', 4487 'browser/first_run/upgrade_util.cc',
4487 'browser/first_run/upgrade_util.h', 4488 'browser/first_run/upgrade_util.h',
4488 'browser/first_run/upgrade_util_linux.cc', 4489 'browser/first_run/upgrade_util_linux.cc',
4489 'browser/icon_loader_linux.cc', 4490 'browser/icon_loader_linux.cc',
4490 'browser/icon_manager_linux.cc', 4491 'browser/icon_manager_linux.cc',
(...skipping 1162 matching lines...) Expand 10 before | Expand all | Expand 10 after
5653 # protocol buffer. 5654 # protocol buffer.
5654 'target_name': 'in_memory_url_index_cache_proto', 5655 'target_name': 'in_memory_url_index_cache_proto',
5655 'type': 'static_library', 5656 'type': 'static_library',
5656 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ], 5657 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ],
5657 'variables': { 5658 'variables': {
5658 'proto_in_dir': 'browser/history', 5659 'proto_in_dir': 'browser/history',
5659 'proto_out_dir': 'chrome/browser/history', 5660 'proto_out_dir': 'chrome/browser/history',
5660 }, 5661 },
5661 'includes': [ '../build/protoc.gypi' ] 5662 'includes': [ '../build/protoc.gypi' ]
5662 }, 5663 },
5664 {
5665 # Protobuf compiler / generator for the PowerSupplyProperties protocol
5666 # buffer.
5667 'target_name': 'power_supply_properties_proto',
5668 'type': 'static_library',
5669 'conditions': [
5670 ['chromeos==1', {
5671 'sources': [
5672 '../third_party/cros_system_api/dbus/power_supply_properties.proto',
5673 ],
5674 'variables': {
5675 'proto_in_dir': '../third_party/cros_system_api/dbus/',
5676 'proto_out_dir': 'chrome/browser/chromeos/dbus',
5677 },
5678 'includes': ['../build/protoc.gypi'],
5679 }],
5680 ],
5681 },
5663 ], 5682 ],
5664 } 5683 }
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/dbus/power_manager_client.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698