OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 static_library("nfc") { |
| 6 sources = [ |
| 7 "nfc_adapter.cc", |
| 8 "nfc_adapter.h", |
| 9 "nfc_adapter_chromeos.cc", |
| 10 "nfc_adapter_chromeos.h", |
| 11 "nfc_adapter_factory.cc", |
| 12 "nfc_adapter_factory.h", |
| 13 "nfc_ndef_record.cc", |
| 14 "nfc_ndef_record.h", |
| 15 "nfc_ndef_record_utils_chromeos.cc", |
| 16 "nfc_ndef_record_utils_chromeos.h", |
| 17 "nfc_peer.cc", |
| 18 "nfc_peer.h", |
| 19 "nfc_peer_chromeos.cc", |
| 20 "nfc_peer_chromeos.h", |
| 21 "nfc_tag.cc", |
| 22 "nfc_tag.h", |
| 23 "nfc_tag_chromeos.cc", |
| 24 "nfc_tag_chromeos.h", |
| 25 "nfc_tag_technology.cc", |
| 26 "nfc_tag_technology.h", |
| 27 "nfc_tag_technology_chromeos.cc", |
| 28 "nfc_tag_technology_chromeos.h" |
| 29 ] |
| 30 |
| 31 deps = [ |
| 32 "//base", |
| 33 "//url", |
| 34 ] |
| 35 |
| 36 if (is_chromeos) { |
| 37 deps += [ |
| 38 "//dbus", |
| 39 #'../../chromeos/chromeos.gyp:chromeos', TODO(GYP) |
| 40 ] |
| 41 } |
| 42 } |
OLD | NEW |