OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 bundle_data("assets") { | 5 bundle_data("assets") { |
6 sources = [ | 6 sources = [ |
7 "resources/activity_services_print.xcassets/Contents.json", | 7 "resources/activity_services_print.xcassets/Contents.json", |
8 "resources/activity_services_print.xcassets/activity_services_print.imageset
/Contents.json", | 8 "resources/activity_services_print.xcassets/activity_services_print.imageset
/Contents.json", |
9 "resources/activity_services_print.xcassets/activity_services_print.imageset
/activity_services_print-60@2x.png", | 9 "resources/activity_services_print.xcassets/activity_services_print.imageset
/activity_services_print-60@2x.png", |
10 "resources/activity_services_print.xcassets/activity_services_print.imageset
/activity_services_print-60@3x.png", | 10 "resources/activity_services_print.xcassets/activity_services_print.imageset
/activity_services_print-60@3x.png", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 "share_protocol.h", | 47 "share_protocol.h", |
48 "share_to_data.h", | 48 "share_to_data.h", |
49 "share_to_data.mm", | 49 "share_to_data.mm", |
50 "share_to_data_builder.h", | 50 "share_to_data_builder.h", |
51 "share_to_data_builder.mm", | 51 "share_to_data_builder.mm", |
52 ] | 52 ] |
53 deps = [ | 53 deps = [ |
54 ":assets", | 54 ":assets", |
55 ":resources", | 55 ":resources", |
56 "//base", | 56 "//base", |
57 "//components/reading_list/core", | 57 "//components/reading_list/core:flags", |
58 "//ios/chrome/app/strings", | 58 "//ios/chrome/app/strings", |
59 "//ios/chrome/browser", | 59 "//ios/chrome/browser", |
60 "//ios/chrome/browser/browser_state", | 60 "//ios/chrome/browser/browser_state", |
61 "//ios/chrome/browser/tabs", | 61 "//ios/chrome/browser/tabs", |
62 "//ios/chrome/browser/ui", | 62 "//ios/chrome/browser/ui", |
63 "//ios/chrome/browser/ui/commands", | 63 "//ios/chrome/browser/ui/commands", |
64 "//net", | 64 "//net", |
65 "//ui/base", | 65 "//ui/base", |
66 "//url", | 66 "//url", |
67 ] | 67 ] |
68 libs = [ | 68 libs = [ |
69 "MobileCoreServices.framework", | 69 "MobileCoreServices.framework", |
70 "UIKit.framework", | 70 "UIKit.framework", |
71 ] | 71 ] |
72 } | 72 } |
73 | 73 |
74 source_set("unit_tests") { | 74 source_set("unit_tests") { |
75 configs += [ "//build/config/compiler:enable_arc" ] | 75 configs += [ "//build/config/compiler:enable_arc" ] |
76 testonly = true | 76 testonly = true |
77 sources = [ | 77 sources = [ |
78 "activity_service_controller_unittest.mm", | 78 "activity_service_controller_unittest.mm", |
79 "activity_type_util_unittest.mm", | 79 "activity_type_util_unittest.mm", |
80 "chrome_activity_item_thumbnail_generator_unittest.mm", | 80 "chrome_activity_item_thumbnail_generator_unittest.mm", |
81 ] | 81 ] |
82 deps = [ | 82 deps = [ |
83 ":activity_services", | 83 ":activity_services", |
84 "//base", | 84 "//base", |
85 "//base/test:test_support", | 85 "//base/test:test_support", |
86 "//components/reading_list/core", | 86 "//components/reading_list/core:flags", |
87 "//ios/chrome/app/strings", | 87 "//ios/chrome/app/strings", |
88 "//ios/chrome/browser/browser_state:test_support", | 88 "//ios/chrome/browser/browser_state:test_support", |
89 "//ios/chrome/browser/tabs", | 89 "//ios/chrome/browser/tabs", |
90 "//ios/web:test_support", | 90 "//ios/web:test_support", |
91 "//testing/gtest", | 91 "//testing/gtest", |
92 "//third_party/ocmock", | 92 "//third_party/ocmock", |
93 "//ui/base", | 93 "//ui/base", |
94 "//ui/base:test_support", | 94 "//ui/base:test_support", |
95 ] | 95 ] |
96 } | 96 } |
(...skipping 12 matching lines...) Expand all Loading... |
109 "//ios/chrome/browser/ui:ui_internal", | 109 "//ios/chrome/browser/ui:ui_internal", |
110 "//ios/chrome/test/app:test_support", | 110 "//ios/chrome/test/app:test_support", |
111 "//ios/chrome/test/earl_grey:test_support", | 111 "//ios/chrome/test/earl_grey:test_support", |
112 "//ios/third_party/material_components_ios", | 112 "//ios/third_party/material_components_ios", |
113 "//ios/web:earl_grey_test_support", | 113 "//ios/web:earl_grey_test_support", |
114 "//ios/web:test_support", | 114 "//ios/web:test_support", |
115 "//ui/base", | 115 "//ui/base", |
116 ] | 116 ] |
117 libs = [ "XCTest.framework" ] | 117 libs = [ "XCTest.framework" ] |
118 } | 118 } |
OLD | NEW |