blob: d627ab7f036ecd55ccbae8a927159c6ffd4aa4bd [file] [log] [blame]
Armando Montanez5104cd62019-12-10 14:36:43 -08001# Copyright 2019 The Pigweed Authors
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may not
4# use this file except in compliance with the License. You may obtain a copy of
5# the License at
6#
7# https://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations under
13# the License.
14
15import("$dir_pw_docgen/docs.gni")
16import("$dir_pw_unit_test/test.gni")
17
18# TODO(pwbug/17): Replace when Pigweed config system is added.
19# This if statement allows docs to always build even if the target isn't
20# compatible with this backend.
21if (dir_pw_cpu_exception_backend == dir_pw_cpu_exception_armv7m) {
22 config("default_config") {
23 include_dirs = [ "public" ]
24 }
25
26 source_set("pw_cpu_exception_armv7m") {
Wyatt Hepler21192402020-01-15 15:40:51 -080027 public_configs = [ ":default_config" ]
Armando Montanez5104cd62019-12-10 14:36:43 -080028 deps = [
29 "$dir_pw_cpu_exception:facade",
30 "$dir_pw_dumb_io:default_putget_bytes",
31 "$dir_pw_preprocessor",
32 ]
Rob Mohra0ba54f2020-02-27 11:43:49 -080033 public = [ "public/pw_cpu_exception_armv7m/cpu_state.h" ]
Armando Montanez5104cd62019-12-10 14:36:43 -080034 sources = [
35 "cpu_exception_entry.cc",
36 "cpu_state.cc",
37 ]
38 sources += public
39 }
40
41 pw_test_group("tests") {
42 tests = [ ":cpu_exception_entry_test" ]
43 }
44
45 pw_test("cpu_exception_entry_test") {
46 deps = [
47 ":pw_cpu_exception_armv7m",
48 "$dir_pw_cpu_exception",
49 ]
Rob Mohra0ba54f2020-02-27 11:43:49 -080050 sources = [ "exception_entry_test.cc" ]
Armando Montanez5104cd62019-12-10 14:36:43 -080051 }
52}
53
54pw_doc_group("docs") {
Rob Mohra0ba54f2020-02-27 11:43:49 -080055 sources = [ "docs.rst" ]
Armando Montanez5104cd62019-12-10 14:36:43 -080056}