blob: e7adce75a7c370f42780f7c25ecbf35f8283a93b [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 ]
33 public = [
34 "public/pw_cpu_exception_armv7m/cpu_state.h",
35 ]
36 sources = [
37 "cpu_exception_entry.cc",
38 "cpu_state.cc",
39 ]
40 sources += public
41 }
42
43 pw_test_group("tests") {
44 tests = [ ":cpu_exception_entry_test" ]
45 }
46
47 pw_test("cpu_exception_entry_test") {
48 deps = [
49 ":pw_cpu_exception_armv7m",
50 "$dir_pw_cpu_exception",
51 ]
52 sources = [
53 "exception_entry_test.cc",
54 ]
55 }
56}
57
58pw_doc_group("docs") {
59 sources = [
60 "docs.rst",
61 ]
62}