| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 # GN version: //device/nfc |
| 11 'target_name': 'device_nfc', | 12 'target_name': 'device_nfc', |
| 12 'type': 'static_library', | 13 'type': 'static_library', |
| 13 'dependencies': [ | 14 'dependencies': [ |
| 14 '../../base/base.gyp:base', | 15 '../../base/base.gyp:base', |
| 15 '../../url/url.gyp:url_lib', | 16 '../../url/url.gyp:url_lib', |
| 16 ], | 17 ], |
| 17 'sources': [ | 18 'sources': [ |
| 19 # Note: file list duplicated in GN build. |
| 18 'nfc_adapter.cc', | 20 'nfc_adapter.cc', |
| 19 'nfc_adapter.h', | 21 'nfc_adapter.h', |
| 20 'nfc_adapter_chromeos.cc', | 22 'nfc_adapter_chromeos.cc', |
| 21 'nfc_adapter_chromeos.h', | 23 'nfc_adapter_chromeos.h', |
| 22 'nfc_adapter_factory.cc', | 24 'nfc_adapter_factory.cc', |
| 23 'nfc_adapter_factory.h', | 25 'nfc_adapter_factory.h', |
| 24 'nfc_ndef_record.cc', | 26 'nfc_ndef_record.cc', |
| 25 'nfc_ndef_record.h', | 27 'nfc_ndef_record.h', |
| 26 'nfc_ndef_record_utils_chromeos.cc', | 28 'nfc_ndef_record_utils_chromeos.cc', |
| 27 'nfc_ndef_record_utils_chromeos.h', | 29 'nfc_ndef_record_utils_chromeos.h', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 43 'dependencies': [ | 45 'dependencies': [ |
| 44 '../../build/linux/system.gyp:dbus', | 46 '../../build/linux/system.gyp:dbus', |
| 45 '../../chromeos/chromeos.gyp:chromeos', | 47 '../../chromeos/chromeos.gyp:chromeos', |
| 46 '../../dbus/dbus.gyp:dbus', | 48 '../../dbus/dbus.gyp:dbus', |
| 47 ] | 49 ] |
| 48 }], | 50 }], |
| 49 ], | 51 ], |
| 50 }, | 52 }, |
| 51 ], | 53 ], |
| 52 } | 54 } |
| OLD | NEW |