| 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/web/js_compile.gni") | 5 import("//ios/web/js_compile.gni") |
| 6 | 6 |
| 7 bundle_data("resources") { | 7 bundle_data("resources") { |
| 8 sources = [ | 8 sources = [ |
| 9 "resources/expand_less.png", | 9 "resources/expand_less.png", |
| 10 "resources/expand_less@2x.png", | 10 "resources/expand_less@2x.png", |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "//ios/third_party/material_roboto_font_loader_ios", | 97 "//ios/third_party/material_roboto_font_loader_ios", |
| 98 "//ios/web", | 98 "//ios/web", |
| 99 "//net", | 99 "//net", |
| 100 "//ui/base", | 100 "//ui/base", |
| 101 "//url", | 101 "//url", |
| 102 ] | 102 ] |
| 103 libs = [ "UIKit.framework" ] | 103 libs = [ "UIKit.framework" ] |
| 104 } | 104 } |
| 105 | 105 |
| 106 source_set("test_support") { | 106 source_set("test_support") { |
| 107 configs += [ "//build/config/compiler:enable_arc" ] |
| 107 testonly = true | 108 testonly = true |
| 108 sources = [ | 109 sources = [ |
| 109 "touch_to_search_permissions_mediator+testing.h", | 110 "touch_to_search_permissions_mediator+testing.h", |
| 110 "touch_to_search_permissions_mediator+testing.mm", | 111 "touch_to_search_permissions_mediator+testing.mm", |
| 111 ] | 112 ] |
| 112 deps = [ | 113 deps = [ |
| 113 ":contextual_search", | 114 ":contextual_search", |
| 114 ] | 115 ] |
| 115 } | 116 } |
| 116 | 117 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 135 "//ios/chrome/browser/sync", | 136 "//ios/chrome/browser/sync", |
| 136 "//ios/chrome/browser/sync:test_support", | 137 "//ios/chrome/browser/sync:test_support", |
| 137 "//ios/chrome/browser/web:test_support", | 138 "//ios/chrome/browser/web:test_support", |
| 138 "//ios/web", | 139 "//ios/web", |
| 139 "//ios/web:test_support", | 140 "//ios/web:test_support", |
| 140 "//net", | 141 "//net", |
| 141 "//testing/gtest", | 142 "//testing/gtest", |
| 142 "//third_party/ocmock", | 143 "//third_party/ocmock", |
| 143 ] | 144 ] |
| 144 } | 145 } |
| OLD | NEW |