| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 test("ios_chrome_unittests") { | 7 test("ios_chrome_unittests") { |
| 8 sources = [ | 8 sources = [ |
| 9 "app/safe_mode_util_unittest.cc", | 9 "app/safe_mode_util_unittest.cc", |
| 10 "browser/chrome_url_util_unittest.mm", | 10 "browser/chrome_url_util_unittest.mm", |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 "//components/prefs:test_support", | 50 "//components/prefs:test_support", |
| 51 "//components/signin/core/browser:test_support", | 51 "//components/signin/core/browser:test_support", |
| 52 "//components/signin/ios/browser:test_support", | 52 "//components/signin/ios/browser:test_support", |
| 53 "//components/sync_driver:test_support", | 53 "//components/sync_driver:test_support", |
| 54 "//components/update_client", | 54 "//components/update_client", |
| 55 "//components/version_info", | 55 "//components/version_info", |
| 56 "//ios/chrome/app", | 56 "//ios/chrome/app", |
| 57 "//ios/chrome/browser", | 57 "//ios/chrome/browser", |
| 58 "//ios/chrome/browser:test_support", | 58 "//ios/chrome/browser:test_support", |
| 59 "//ios/chrome/common", | 59 "//ios/chrome/common", |
| 60 "//ios/public/test", | |
| 61 "//ios/web", | 60 "//ios/web", |
| 62 "//ios/web:test_support", | 61 "//ios/web:test_support", |
| 63 "//net:test_support", | 62 "//net:test_support", |
| 64 "//skia", | 63 "//skia", |
| 65 "//testing/gmock", | 64 "//testing/gmock", |
| 66 "//testing/gtest", | 65 "//testing/gtest", |
| 67 "//third_party/ocmock", | 66 "//third_party/ocmock", |
| 68 "//ui/gfx:test_support", | 67 "//ui/gfx:test_support", |
| 69 ] | 68 ] |
| 70 | 69 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 81 # 'test_data_files': [ | 80 # 'test_data_files': [ |
| 82 # 'test/data/webdata/bookmarkimages', | 81 # 'test/data/webdata/bookmarkimages', |
| 83 # ], | 82 # ], |
| 84 # 'test_data_prefix': 'ios/chrome', | 83 # 'test_data_prefix': 'ios/chrome', |
| 85 # }, | 84 # }, |
| 86 # 'includes': [ '../../build/copy_test_data_ios.gypi' ] | 85 # 'includes': [ '../../build/copy_test_data_ios.gypi' ] |
| 87 # }, | 86 # }, |
| 88 # ], | 87 # ], |
| 89 # 'includes': ['ios_chrome_resources_bundle.gypi'], | 88 # 'includes': ['ios_chrome_resources_bundle.gypi'], |
| 90 } | 89 } |
| OLD | NEW |