17 lines
433 B
Plaintext
17 lines
433 B
Plaintext
|
# Copyright 2017 Google Inc.
|
||
|
#
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
|
||
|
import("../third_party.gni")
|
||
|
|
||
|
if (!is_win) {
|
||
|
third_party("googletest") {
|
||
|
public_include_dirs = [ "../externals/googletest/googletest/include" ]
|
||
|
include_dirs = [ "../externals/googletest/googletest" ]
|
||
|
sources = [
|
||
|
"../externals/googletest/googletest/src/gtest-all.cc",
|
||
|
]
|
||
|
}
|
||
|
}
|