| 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 import("//ios/public/provider/chrome/browser/build_config.gni") |   5 import("//ios/public/provider/chrome/browser/build_config.gni") | 
|   6  |   6  | 
|   7 source_set("perf_test_support") { |   7 source_set("perf_test_support") { | 
|   8   configs += [ "//build/config/compiler:enable_arc" ] |   8   configs += [ "//build/config/compiler:enable_arc" ] | 
|   9   testonly = true |   9   testonly = true | 
|  10   sources = [ |  10   sources = [ | 
|  11     "perf_test_with_bvc_ios.h", |  11     "perf_test_with_bvc_ios.h", | 
|  12     "perf_test_with_bvc_ios.mm", |  12     "perf_test_with_bvc_ios.mm", | 
|  13   ] |  13   ] | 
|  14   deps = [ |  14   deps = [ | 
|  15     "//base", |  15     "//base", | 
|  16     "//components/bookmarks/test", |  16     "//components/bookmarks/test", | 
|  17     "//ios/chrome/browser/autocomplete", |  17     "//ios/chrome/browser/autocomplete", | 
|  18     "//ios/chrome/browser/bookmarks", |  18     "//ios/chrome/browser/bookmarks", | 
|  19     "//ios/chrome/browser/browser_state:test_support", |  19     "//ios/chrome/browser/browser_state:test_support", | 
|  20     "//ios/chrome/browser/search_engines", |  20     "//ios/chrome/browser/search_engines", | 
|  21     "//ios/chrome/browser/sessions", |  21     "//ios/chrome/browser/sessions", | 
|  22     "//ios/chrome/browser/sessions:serialisation", |  22     "//ios/chrome/browser/sessions:serialisation", | 
|  23     "//ios/chrome/browser/tabs", |  23     "//ios/chrome/browser/tabs", | 
|  24     "//ios/chrome/browser/ui:ui_internal", |  24     "//ios/chrome/browser/ui:ui_internal", | 
|  25     "//ios/chrome/browser/web:web_internal", |  25     "//ios/chrome/browser/web:web_internal", | 
|  26     "//ios/chrome/test:test_support", |  26     "//ios/chrome/test:test_support", | 
|  27     "//ios/chrome/test/base:perf_test_support", |  27     "//ios/chrome/test/base:perf_test_support", | 
|  28     "//ios/public/provider/chrome/browser", |  28     "//ios/public/provider/chrome/browser", | 
|  29     "//ios/web:test_support", |  29     "//ios/web/public/test", | 
|  30  |  30  | 
|  31     # Perf tests can run with any provider, but the resulting numbers will only |  31     # Perf tests can run with any provider, but the resulting numbers will only | 
|  32     # be meaningful if ChromeBrowserProviderImpl is used. |  32     # be meaningful if ChromeBrowserProviderImpl is used. | 
|  33     ios_provider_target, |  33     ios_provider_target, | 
|  34   ] |  34   ] | 
|  35   libs = [ "UIKit.framework" ] |  35   libs = [ "UIKit.framework" ] | 
|  36 } |  36 } | 
| OLD | NEW |