| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("common") { | 5 source_set("common") { |
| 6 sources = [ | 6 sources = [ |
| 7 "channel_info.h", | 7 "channel_info.h", |
| 8 "channel_info.mm", | 8 "channel_info.mm", |
| 9 "material_timing.h", | 9 "material_timing.h", |
| 10 "material_timing.mm", | 10 "material_timing.mm", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 "//net", | 22 "//net", |
| 23 "//url", | 23 "//url", |
| 24 ] | 24 ] |
| 25 | 25 |
| 26 libs = [ "QuartzCore.framework" ] | 26 libs = [ "QuartzCore.framework" ] |
| 27 } | 27 } |
| 28 | 28 |
| 29 source_set("unit_tests") { | 29 source_set("unit_tests") { |
| 30 testonly = true | 30 testonly = true |
| 31 sources = [ | 31 sources = [ |
| 32 "block_unittest.mm", |
| 33 "ns_regular_expression_unittest.mm", |
| 32 "string_util_unittest.mm", | 34 "string_util_unittest.mm", |
| 33 "x_callback_url_unittest.cc", | 35 "x_callback_url_unittest.cc", |
| 34 ] | 36 ] |
| 35 deps = [ | 37 deps = [ |
| 36 ":common", | 38 ":common", |
| 37 "//base", | 39 "//base", |
| 38 "//testing/gtest", | 40 "//testing/gtest", |
| 39 ] | 41 ] |
| 40 } | 42 } |
| OLD | NEW |