| 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 import("//build/config/ios/rules.gni") | 5 import("//build/config/ios/rules.gni") |
| 6 import("//ios/build/config.gni") | 6 import("//ios/build/config.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 bundle_data("ios_chrome_unittests_bundle_data") { | 9 bundle_data("ios_chrome_unittests_bundle_data") { |
| 10 testonly = true | 10 testonly = true |
| 11 sources = [ | 11 sources = [ |
| 12 "test/data/voice/test_sound.m4a", |
| 12 "test/data/webp_transcode/test.jpg", | 13 "test/data/webp_transcode/test.jpg", |
| 13 "test/data/webp_transcode/test.webp", | 14 "test/data/webp_transcode/test.webp", |
| 14 "test/data/webp_transcode/test_alpha.png", | 15 "test/data/webp_transcode/test_alpha.png", |
| 15 "test/data/webp_transcode/test_alpha.webp", | 16 "test/data/webp_transcode/test_alpha.webp", |
| 16 "test/data/webp_transcode/test_small.tiff", | 17 "test/data/webp_transcode/test_small.tiff", |
| 17 "test/data/webp_transcode/test_small.webp", | 18 "test/data/webp_transcode/test_small.webp", |
| 18 ] | 19 ] |
| 19 outputs = [ | 20 outputs = [ |
| 20 "{{bundle_resources_dir}}/{{source_root_relative_dir}}/" + | 21 "{{bundle_resources_dir}}/{{source_root_relative_dir}}/" + |
| 21 "{{source_file_part}}", | 22 "{{source_file_part}}", |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 "//components/sync:test_support_driver", | 111 "//components/sync:test_support_driver", |
| 111 "//components/syncable_prefs:test_support", | 112 "//components/syncable_prefs:test_support", |
| 112 "//components/update_client", | 113 "//components/update_client", |
| 113 "//components/variations", | 114 "//components/variations", |
| 114 "//components/version_info", | 115 "//components/version_info", |
| 115 "//ios/chrome/app", | 116 "//ios/chrome/app", |
| 116 "//ios/chrome/app/resources:packed_resources", | 117 "//ios/chrome/app/resources:packed_resources", |
| 117 "//ios/chrome/browser", | 118 "//ios/chrome/browser", |
| 118 "//ios/chrome/browser:test_support", | 119 "//ios/chrome/browser:test_support", |
| 119 "//ios/chrome/browser/signin:unit_tests", | 120 "//ios/chrome/browser/signin:unit_tests", |
| 121 "//ios/chrome/browser/ui/voice:unit_tests", |
| 122 "//ios/chrome/browser/voice:unit_tests", |
| 120 "//ios/chrome/common", | 123 "//ios/chrome/common", |
| 121 "//ios/chrome/test", | 124 "//ios/chrome/test", |
| 122 "//ios/chrome/test:run_all_unittests", | 125 "//ios/chrome/test:run_all_unittests", |
| 123 "//ios/net", | 126 "//ios/net", |
| 124 "//ios/public/provider/chrome/browser", | 127 "//ios/public/provider/chrome/browser", |
| 125 "//ios/public/provider/chrome/browser:test_support", | 128 "//ios/public/provider/chrome/browser:test_support", |
| 126 "//ios/testing:ocmock_support", | 129 "//ios/testing:ocmock_support", |
| 127 "//ios/web", | 130 "//ios/web", |
| 128 "//ios/web:test_support", | 131 "//ios/web:test_support", |
| 129 "//net:test_support", | 132 "//net:test_support", |
| 130 "//skia", | 133 "//skia", |
| 131 "//testing/gmock", | 134 "//testing/gmock", |
| 132 "//testing/gtest", | 135 "//testing/gtest", |
| 133 "//third_party/google_toolbox_for_mac", | 136 "//third_party/google_toolbox_for_mac", |
| 134 "//third_party/ocmock", | 137 "//third_party/ocmock", |
| 135 "//ui/base:base", | 138 "//ui/base:base", |
| 136 "//ui/gfx:test_support", | 139 "//ui/gfx:test_support", |
| 137 "//ui/strings:ui_strings", | 140 "//ui/strings:ui_strings", |
| 138 ] | 141 ] |
| 139 | 142 |
| 140 assert_no_deps = ios_assert_no_deps | 143 assert_no_deps = ios_assert_no_deps |
| 141 } | 144 } |
| OLD | NEW |