Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bb23faf7 authored by Arman Uguray's avatar Arman Uguray
Browse files

gn-build: Add tinyxml2 as a secondary source

Added tinyxml2 as a secondary source. Moved //build/secondary/testing to
//build/secondary/third_party in the process. This means that all third_party
sources (gtest, tinyxml2) should be placed in a top-level third_party directory.

BUG=21339022

Change-Id: If324ef1eb0d5061e005f62a80d23fef25e7e78a4
parent 3466c6d1
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
buildtools
out
# TODO(armansito): Remove this, once we resolve the gtest dependencies
# from outside the build system.
testing
third_party
+23 −0
Original line number Diff line number Diff line
#
#  Copyright (C) 2015 Google, Inc.
#
#  Licensed under the Apache License, Version 2.0 (the "License");
#  you may not use this file except in compliance with the License.
#  You may obtain a copy of the License at:
#
#  http://www.apache.org/licenses/LICENSE-2.0
#
#  Unless required by applicable law or agreed to in writing, software
#  distributed under the License is distributed on an "AS IS" BASIS,
#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#  See the License for the specific language governing permissions and
#  limitations under the License.
#

static_library("tinyxml2") {
  sources = [
    "tinyxml2.cpp"
  ]

  include_dirs = [ "." ]
}
+1 −1
Original line number Diff line number Diff line
@@ -71,7 +71,7 @@ executable("net_test_osi") {

  deps = [
    "//osi",
    "//testing/gtest:gtest_main",
    "//third_party/gtest:gtest_main",
  ]

  libs = [ "-lpthread", "-lrt" ]