| 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("elements") { | 5 source_set("elements") { |
| 6 configs += [ "//build/config/compiler:enable_arc" ] | 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 7 sources = [ | 7 sources = [ |
| 8 "selector_coordinator.h", | 8 "selector_coordinator.h", |
| 9 "selector_coordinator.mm", | 9 "selector_coordinator.mm", |
| 10 "selector_picker_presentation_controller.h", | 10 "selector_picker_presentation_controller.h", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 ":elements", | 31 ":elements", |
| 32 ":elements_internal", | 32 ":elements_internal", |
| 33 "//base", | 33 "//base", |
| 34 "//base/test:test_support", | 34 "//base/test:test_support", |
| 35 "//testing/gtest", | 35 "//testing/gtest", |
| 36 "//third_party/ocmock", | 36 "//third_party/ocmock", |
| 37 ] | 37 ] |
| 38 } | 38 } |
| 39 | 39 |
| 40 source_set("elements_internal") { | 40 source_set("elements_internal") { |
| 41 configs += [ "//build/config/compiler:enable_arc" ] |
| 41 sources = [ | 42 sources = [ |
| 42 "activity_overlay_coordinator.h", | 43 "activity_overlay_coordinator.h", |
| 43 "activity_overlay_coordinator.mm", | 44 "activity_overlay_coordinator.mm", |
| 44 "activity_overlay_view_controller.h", | 45 "activity_overlay_view_controller.h", |
| 45 "activity_overlay_view_controller.mm", | 46 "activity_overlay_view_controller.mm", |
| 46 ] | 47 ] |
| 47 deps = [ | 48 deps = [ |
| 48 "//base", | 49 "//base", |
| 49 "//ios/chrome/browser", | 50 "//ios/chrome/browser", |
| 50 "//ios/chrome/browser/ui", | 51 "//ios/chrome/browser/ui", |
| 51 "//ios/chrome/browser/ui/material_components", | 52 "//ios/chrome/browser/ui/material_components", |
| 52 "//ios/third_party/material_components_ios", | 53 "//ios/third_party/material_components_ios", |
| 53 ] | 54 ] |
| 54 libs = [ "UIKit.framework" ] | 55 libs = [ "UIKit.framework" ] |
| 55 } | 56 } |
| OLD | NEW |