| 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 14 matching lines...) Expand all  Loading... | 
| 25   testonly = true | 25   testonly = true | 
| 26   sources = [ | 26   sources = [ | 
| 27     "resources/contextualsearch_unittest.js", | 27     "resources/contextualsearch_unittest.js", | 
| 28   ] | 28   ] | 
| 29   outputs = [ | 29   outputs = [ | 
| 30     "{{bundle_resources_dir}}/{{source_file_part}}", | 30     "{{bundle_resources_dir}}/{{source_file_part}}", | 
| 31   ] | 31   ] | 
| 32 } | 32 } | 
| 33 | 33 | 
| 34 source_set("contextual_search") { | 34 source_set("contextual_search") { | 
|  | 35   configs += [ "//build/config/compiler:enable_arc" ] | 
| 35   sources = [ | 36   sources = [ | 
| 36     "contextual_search_context.cc", | 37     "contextual_search_context.cc", | 
| 37     "contextual_search_context.h", | 38     "contextual_search_context.h", | 
| 38     "contextual_search_controller.h", | 39     "contextual_search_controller.h", | 
| 39     "contextual_search_controller.mm", | 40     "contextual_search_controller.mm", | 
| 40     "contextual_search_delegate.cc", | 41     "contextual_search_delegate.cc", | 
| 41     "contextual_search_delegate.h", | 42     "contextual_search_delegate.h", | 
| 42     "contextual_search_header_view.h", | 43     "contextual_search_header_view.h", | 
| 43     "contextual_search_header_view.mm", | 44     "contextual_search_header_view.mm", | 
| 44     "contextual_search_highlighter_view.h", | 45     "contextual_search_highlighter_view.h", | 
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 134     "//ios/chrome/browser/sync", | 135     "//ios/chrome/browser/sync", | 
| 135     "//ios/chrome/browser/sync:test_support", | 136     "//ios/chrome/browser/sync:test_support", | 
| 136     "//ios/chrome/browser/web:test_support", | 137     "//ios/chrome/browser/web:test_support", | 
| 137     "//ios/web", | 138     "//ios/web", | 
| 138     "//ios/web:test_support", | 139     "//ios/web:test_support", | 
| 139     "//net", | 140     "//net", | 
| 140     "//testing/gtest", | 141     "//testing/gtest", | 
| 141     "//third_party/ocmock", | 142     "//third_party/ocmock", | 
| 142   ] | 143   ] | 
| 143 } | 144 } | 
| OLD | NEW | 
|---|