| 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': { |
| 7 'chromium_code': 1, |
| 8 }, |
| 6 'targets': [ | 9 'targets': [ |
| 7 { | 10 { |
| 8 'target_name': 'android_tools_common', | 11 'target_name': 'android_tools_common', |
| 9 'type': 'static_library', | 12 'type': 'static_library', |
| 10 'toolsets': ['host', 'target'], | 13 'toolsets': ['host', 'target'], |
| 11 'include_dirs': [ | 14 'include_dirs': [ |
| 12 '..', | 15 '..', |
| 13 '../../..', | 16 '../../..', |
| 14 ], | 17 ], |
| 15 'sources': [ | 18 'sources': [ |
| 16 'adb_connection.cc', | 19 'adb_connection.cc', |
| 17 'adb_connection.h', | 20 'adb_connection.h', |
| 18 'daemon.cc', | 21 'daemon.cc', |
| 19 'daemon.h', | 22 'daemon.h', |
| 20 'net.cc', | 23 'net.cc', |
| 21 'net.h', | 24 'net.h', |
| 22 ], | 25 ], |
| 23 }, | 26 }, |
| 24 ], | 27 ], |
| 25 } | 28 } |
| 26 | 29 |
| OLD | NEW |