blob: ad23e10d5bfe5fbf0e591a63873fde1aeaa05ae0 [file] [log] [blame]
# Copyright 2016 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("//mojo/public/tools/bindings/mojom.gni")
# This target does NOT depend on skia. One can depend on this target to avoid
# picking up a dependency on skia.
mojom("mojom") {
sources = [ "range.mojom" ]
}
mojom("test_interfaces") {
sources = [ "range_traits_test_service.mojom" ]
public_deps = [ ":mojom" ]
}
source_set("unit_test") {
testonly = true
sources = [ "range_mojom_traits_unittest.cc" ]
deps = [
":test_interfaces",
"//base",
"//base/test:test_support",
"//mojo/public/cpp/bindings",
"//testing/gtest",
"//ui/gfx/range",
]
}