| 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 source_set("omnibox") { | 5 source_set("omnibox") { |
| 6 sources = [ | 6 sources = [ |
| 7 "omnibox_util.cc", | 7 "omnibox_util.cc", |
| 8 "omnibox_util.h", | 8 "omnibox_util.h", |
| 9 "web_omnibox_edit_controller.cc", | 9 "web_omnibox_edit_controller.cc", |
| 10 "web_omnibox_edit_controller.h", | 10 "web_omnibox_edit_controller.h", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "resources/omnibox_transparent_background.png", | 25 "resources/omnibox_transparent_background.png", |
| 26 "resources/omnibox_transparent_background@2x.png", | 26 "resources/omnibox_transparent_background@2x.png", |
| 27 "resources/omnibox_transparent_background@3x.png", | 27 "resources/omnibox_transparent_background@3x.png", |
| 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("omnibox_internal") { | 34 source_set("omnibox_internal") { |
| 35 configs += [ "//build/config/compiler:enable_arc" ] |
| 35 sources = [ | 36 sources = [ |
| 36 "chrome_omnibox_client_ios.h", | 37 "chrome_omnibox_client_ios.h", |
| 37 "chrome_omnibox_client_ios.mm", | 38 "chrome_omnibox_client_ios.mm", |
| 38 "location_bar_view_ios.h", | 39 "location_bar_view_ios.h", |
| 39 "location_bar_view_ios.mm", | 40 "location_bar_view_ios.mm", |
| 40 "omnibox_popup_material_row.h", | 41 "omnibox_popup_material_row.h", |
| 41 "omnibox_popup_material_row.mm", | 42 "omnibox_popup_material_row.mm", |
| 42 "omnibox_popup_material_view_controller.h", | 43 "omnibox_popup_material_view_controller.h", |
| 43 "omnibox_popup_material_view_controller.mm", | 44 "omnibox_popup_material_view_controller.mm", |
| 44 "omnibox_popup_positioner.h", | 45 "omnibox_popup_positioner.h", |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 visibility = [ ":unit_tests" ] | 132 visibility = [ ":unit_tests" ] |
| 132 testonly = true | 133 testonly = true |
| 133 sources = [ | 134 sources = [ |
| 134 "//ios/chrome/test/data/omnibox/selected_ranges.txt", | 135 "//ios/chrome/test/data/omnibox/selected_ranges.txt", |
| 135 ] | 136 ] |
| 136 outputs = [ | 137 outputs = [ |
| 137 "{{bundle_resources_dir}}/" + | 138 "{{bundle_resources_dir}}/" + |
| 138 "ios/chrome/test/data/omnibox/{{source_file_part}}", | 139 "ios/chrome/test/data/omnibox/{{source_file_part}}", |
| 139 ] | 140 ] |
| 140 } | 141 } |
| OLD | NEW |