OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 { |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 'dependencies': [ | 82 'dependencies': [ |
83 '../../build/linux/system.gyp:dbus', | 83 '../../build/linux/system.gyp:dbus', |
84 '../../chromeos/chromeos.gyp:chromeos', | 84 '../../chromeos/chromeos.gyp:chromeos', |
85 '../../chromeos/chromeos.gyp:power_manager_proto', | 85 '../../chromeos/chromeos.gyp:power_manager_proto', |
86 ], | 86 ], |
87 'sources!': [ | 87 'sources!': [ |
88 'battery_status_manager_default.cc', | 88 'battery_status_manager_default.cc', |
89 'battery_status_manager_linux.cc', | 89 'battery_status_manager_linux.cc', |
90 ], | 90 ], |
91 }], | 91 }], |
| 92 ['OS == "android"', { |
| 93 'dependencies': [ |
| 94 'device_battery_java', |
| 95 ], |
| 96 }], |
92 ['OS == "linux" and use_dbus==1', { | 97 ['OS == "linux" and use_dbus==1', { |
93 'sources!': [ | 98 'sources!': [ |
94 'battery_status_manager_default.cc', | 99 'battery_status_manager_default.cc', |
95 ], | 100 ], |
96 'dependencies': [ | 101 'dependencies': [ |
97 '../../build/linux/system.gyp:dbus', | 102 '../../build/linux/system.gyp:dbus', |
98 '../../dbus/dbus.gyp:dbus', | 103 '../../dbus/dbus.gyp:dbus', |
99 ], | 104 ], |
100 }, { # OS != "linux" or use_dbus==0 | 105 }, { # OS != "linux" or use_dbus==0 |
101 'sources!': [ | 106 'sources!': [ |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 '../../base/base.gyp:base', | 146 '../../base/base.gyp:base', |
142 '../../base/base.gyp:base_java_test_support', | 147 '../../base/base.gyp:base_java_test_support', |
143 'device_battery_java', | 148 'device_battery_java', |
144 ], | 149 ], |
145 'includes': [ '../../build/java.gypi' ], | 150 'includes': [ '../../build/java.gypi' ], |
146 }, | 151 }, |
147 ], | 152 ], |
148 }], | 153 }], |
149 ], | 154 ], |
150 } | 155 } |
OLD | NEW |