Home | History | Annotate | Download | only in mcap_tool
      1 #
      2 #  Copyright 2017 Google, Inc.
      3 #
      4 #  Licensed under the Apache License, Version 2.0 (the "License");
      5 #  you may not use this file except in compliance with the License.
      6 #  You may obtain a copy of the License at:
      7 #
      8 #  http://www.apache.org/licenses/LICENSE-2.0
      9 #
     10 #  Unless required by applicable law or agreed to in writing, software
     11 #  distributed under the License is distributed on an "AS IS" BASIS,
     12 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13 #  See the License for the specific language governing permissions and
     14 #  limitations under the License.
     15 #
     16 executable("mcap_tool") {
     17   testonly = true
     18   sources = [
     19     "mcap_tool.cc",
     20     "mcap_test_app.cc",
     21     "mcap_test_mcl.cc",
     22     "mcap_test_mdep.cc",
     23     "mcap_test_mdl.cc",
     24   ]
     25   include_dirs = [
     26     "//",
     27     "//internal_include",
     28     "//stack/include",
     29     "//btif/include",
     30     "//btcore/include",
     31     "//tools/mcap_tool",
     32   ]
     33   libs = [
     34     "-lpthread",
     35     "-lrt",
     36     "-ldl",
     37   ]
     38   deps = [
     39     "//btcore",
     40     "//osi",
     41     "//third_party/libchrome:base",
     42     "//types",
     43   ]
     44 }
     45