mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
34 lines
740 B
Plaintext
34 lines
740 B
Plaintext
|
# Copyright 2014 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.
|
||
|
|
||
|
import("//build/config/ui.gni")
|
||
|
import("//testing/test.gni")
|
||
|
|
||
|
source_set("tests") {
|
||
|
testonly = true
|
||
|
|
||
|
sources = [
|
||
|
"gpu_unittest.cc",
|
||
|
"property_type_converters_unittest.cc",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//base/test:test_support",
|
||
|
"//mojo/common:common_base",
|
||
|
"//mojo/edk/system",
|
||
|
"//mojo/public/cpp/system",
|
||
|
"//services/service_manager/public/cpp",
|
||
|
"//services/ui/public/cpp",
|
||
|
"//testing/gtest",
|
||
|
"//ui/gfx:test_support",
|
||
|
"//ui/gfx/geometry",
|
||
|
"//ui/gfx/geometry/mojo",
|
||
|
]
|
||
|
|
||
|
if (use_x11) {
|
||
|
deps += [ "//ui/gfx/x" ]
|
||
|
}
|
||
|
}
|