OLD | NEW |
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 { |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 '../testing/gmock.gyp:gmock', | 141 '../testing/gmock.gyp:gmock', |
142 '../testing/gtest.gyp:gtest', | 142 '../testing/gtest.gyp:gtest', |
143 'chromeos_test_support', | 143 'chromeos_test_support', |
144 ], | 144 ], |
145 'sources': [ | 145 'sources': [ |
146 'dbus/blocking_method_caller_unittest.cc', | 146 'dbus/blocking_method_caller_unittest.cc', |
147 'dbus/flimflam_client_unittest_base.cc', | 147 'dbus/flimflam_client_unittest_base.cc', |
148 'dbus/flimflam_client_unittest_base.h', | 148 'dbus/flimflam_client_unittest_base.h', |
149 'dbus/flimflam_manager_client_unittest.cc', | 149 'dbus/flimflam_manager_client_unittest.cc', |
150 'dbus/flimflam_network_client_unittest.cc', | 150 'dbus/flimflam_network_client_unittest.cc', |
| 151 'dbus/flimflam_profile_client_unittest.cc', |
151 ], | 152 ], |
152 'include_dirs': [ | 153 'include_dirs': [ |
153 '..', | 154 '..', |
154 ], | 155 ], |
155 }, | 156 }, |
156 { | 157 { |
157 # Protobuf compiler / generator for the PowerSupplyProperties protocol | 158 # Protobuf compiler / generator for the PowerSupplyProperties protocol |
158 # buffer. | 159 # buffer. |
159 'target_name': 'power_state_control_proto', | 160 'target_name': 'power_state_control_proto', |
160 'type': 'static_library', | 161 'type': 'static_library', |
(...skipping 15 matching lines...) Expand all Loading... |
176 '../third_party/cros_system_api/dbus/power_supply_properties.proto', | 177 '../third_party/cros_system_api/dbus/power_supply_properties.proto', |
177 ], | 178 ], |
178 'variables': { | 179 'variables': { |
179 'proto_in_dir': '../third_party/cros_system_api/dbus/', | 180 'proto_in_dir': '../third_party/cros_system_api/dbus/', |
180 'proto_out_dir': 'chromeos/dbus', | 181 'proto_out_dir': 'chromeos/dbus', |
181 }, | 182 }, |
182 'includes': ['../build/protoc.gypi'], | 183 'includes': ['../build/protoc.gypi'], |
183 }, | 184 }, |
184 ], | 185 ], |
185 } | 186 } |
OLD | NEW |