mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
50 lines
988 B
Plaintext
50 lines
988 B
Plaintext
# Copyright 2018 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
source_set("browser_container") {
|
|
sources = [
|
|
"browser_container_coordinator.h",
|
|
"browser_container_coordinator.mm",
|
|
]
|
|
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
|
|
deps = [
|
|
":ui",
|
|
"//base",
|
|
"//ios/chrome/browser/ui/coordinators:chrome_coordinators",
|
|
]
|
|
}
|
|
|
|
source_set("ui") {
|
|
sources = [
|
|
"browser_container_view_controller.h",
|
|
"browser_container_view_controller.mm",
|
|
]
|
|
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//ios/chrome/browser/ui/fullscreen:ui",
|
|
"//ios/chrome/browser/ui/util",
|
|
]
|
|
}
|
|
|
|
source_set("unit_tests") {
|
|
testonly = true
|
|
|
|
sources = [
|
|
"browser_container_view_controller_unittest.mm",
|
|
]
|
|
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
|
|
deps = [
|
|
":ui",
|
|
"//base",
|
|
"//testing/gtest",
|
|
]
|
|
}
|