| 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 static_library("nfc") { | 5 static_library("nfc") { |
| 6 sources = [ | 6 sources = [ |
| 7 "nfc_adapter.cc", | 7 "nfc_adapter.cc", |
| 8 "nfc_adapter.h", | 8 "nfc_adapter.h", |
| 9 "nfc_adapter_chromeos.cc", | 9 "nfc_adapter_chromeos.cc", |
| 10 "nfc_adapter_chromeos.h", | 10 "nfc_adapter_chromeos.h", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 "nfc_tag_technology.h", | 26 "nfc_tag_technology.h", |
| 27 "nfc_tag_technology_chromeos.cc", | 27 "nfc_tag_technology_chromeos.cc", |
| 28 "nfc_tag_technology_chromeos.h", | 28 "nfc_tag_technology_chromeos.h", |
| 29 ] | 29 ] |
| 30 | 30 |
| 31 deps = [ | 31 deps = [ |
| 32 "//base", | 32 "//base", |
| 33 "//url", | 33 "//url", |
| 34 ] | 34 ] |
| 35 | 35 |
| 36 if (is_chromeos) { | 36 if (is_chromeos_ui) { |
| 37 deps += [ | 37 deps += [ |
| 38 "//chromeos", | 38 "//chromeos", |
| 39 "//dbus", | 39 "//dbus", |
| 40 ] | 40 ] |
| 41 } | 41 } |
| 42 } | 42 } |
| OLD | NEW |