Arman Uguray | 9ca3fb8 | 2015-05-26 14:50:36 -0700 | [diff] [blame] | 1 | # |
Jakub Pawlowski | 5b790fe | 2017-09-18 09:00:20 -0700 | [diff] [blame] | 2 | # Copyright 2015 Google, Inc. |
Arman Uguray | 9ca3fb8 | 2015-05-26 14:50:36 -0700 | [diff] [blame] | 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 | |
| 17 | # This is the root build file for GN. GN will start processing by loading this |
| 18 | # file, and recursively load all dependencies until all dependencies are either |
| 19 | # resolved or known not to exist (which will cause the build to fail). So if |
| 20 | # you add a new build file, there must be some path of dependencies from this |
| 21 | # file to your new one or GN won't know about it. |
| 22 | |
Scott James Remnant | 4c29231 | 2015-05-12 13:58:49 -0700 | [diff] [blame] | 23 | # This pulls in main/BUILD.gn and all of its dependencies. |
| 24 | group("bluetooth") { |
| 25 | deps = [ |
Jakub Pawlowski | 121882e | 2017-10-19 19:51:57 -0700 | [diff] [blame] | 26 | "//main:bluetooth", |
Arman Uguray | f2d6434 | 2015-07-08 15:47:39 -0700 | [diff] [blame] | 27 | "//service:bluetoothtbd", |
Scott James Remnant | 4c29231 | 2015-05-12 13:58:49 -0700 | [diff] [blame] | 28 | ] |
| 29 | } |
Marie Janssen | 3e54b60 | 2015-06-11 15:18:01 -0700 | [diff] [blame] | 30 | |
| 31 | group("bluetooth_tests") { |
| 32 | testonly = true |
| 33 | |
| 34 | deps = [ |
Jakub Pawlowski | d7a05a0 | 2016-02-22 18:04:24 -0800 | [diff] [blame] | 35 | "//test/suite:net_test_bluetooth", |
Marie Janssen | 3e54b60 | 2015-06-11 15:18:01 -0700 | [diff] [blame] | 36 | "//btcore:net_test_btcore", |
| 37 | "//hci:net_test_hci", |
| 38 | "//osi:net_test_osi", |
| 39 | "//device:net_test_device", |
| 40 | ] |
| 41 | } |
Jack He | b29fae5 | 2017-05-17 22:26:05 -0700 | [diff] [blame] | 42 | |
| 43 | group("test_tools") { |
| 44 | testonly = true |
| 45 | deps = [ |
| 46 | "//tools/mcap_tool:mcap_tool" |
| 47 | ] |
| 48 | } |