| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 source_set("identifier") { | 5 source_set("identifier") { |
| 6 configs += [ "//build/config/compiler:enable_arc" ] | |
| 7 sources = [ | 6 sources = [ |
| 8 "content_suggestion_identifier.h", | 7 "content_suggestion_identifier.h", |
| 9 "content_suggestion_identifier.mm", | 8 "content_suggestion_identifier.mm", |
| 10 "content_suggestions_section_information.h", | 9 "content_suggestions_section_information.h", |
| 11 "content_suggestions_section_information.mm", | 10 "content_suggestions_section_information.mm", |
| 12 ] | 11 ] |
| 13 deps = [ | 12 deps = [ |
| 14 "//base", | 13 "//base", |
| 15 ] | 14 ] |
| 15 configs += [ "//build/config/compiler:enable_arc" ] |
| 16 } | 16 } |
| 17 | 17 |
| 18 source_set("unit_tests") { | 18 source_set("unit_tests") { |
| 19 configs += [ "//build/config/compiler:enable_arc" ] | |
| 20 testonly = true | 19 testonly = true |
| 21 sources = [ | 20 sources = [ |
| 22 "content_suggestion_identifier_unittest.mm", | 21 "content_suggestion_identifier_unittest.mm", |
| 23 ] | 22 ] |
| 24 deps = [ | 23 deps = [ |
| 25 ":identifier", | 24 ":identifier", |
| 26 "//testing/gtest", | 25 "//testing/gtest", |
| 27 ] | 26 ] |
| 27 configs += [ "//build/config/compiler:enable_arc" ] |
| 28 } | 28 } |
| OLD | NEW |