Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(786)

Side by Side Diff: ios/chrome/common/BUILD.gn

Issue 2480233002: [ios] Adds unittests for blocks and NSRegularExpression. (Closed)
Patch Set: Review. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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",
11 "string_util.h", 11 "string_util.h",
12 "string_util.mm", 12 "string_util.mm",
13 ] 13 ]
14 14
15 deps = [ 15 deps = [
16 "//base", 16 "//base",
17 "//components/version_info", 17 "//components/version_info",
18 "//ios/chrome/common/app_group:main_app", 18 "//ios/chrome/common/app_group:main_app",
19 "//ios/chrome/common/physical_web:physical_web", 19 "//ios/chrome/common/physical_web:physical_web",
20 ] 20 ]
21 21
22 libs = [ "QuartzCore.framework" ] 22 libs = [ "QuartzCore.framework" ]
23 } 23 }
24 24
25 source_set("unit_tests") { 25 source_set("unit_tests") {
26 testonly = true 26 testonly = true
27 sources = [ 27 sources = [
28 "block_unittest.mm",
29 "ns_regular_expression_unittest.mm",
28 "string_util_unittest.mm", 30 "string_util_unittest.mm",
29 ] 31 ]
30 deps = [ 32 deps = [
31 ":common", 33 ":common",
32 "//base", 34 "//base",
33 "//testing/gtest", 35 "//testing/gtest",
34 ] 36 ]
35 } 37 }
OLDNEW
« no previous file with comments | « no previous file | ios/chrome/common/block_unittest.mm » ('j') | ios/chrome/common/ns_regular_expression_unittest.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698