diff options
author | ncbray <ncbray@chromium.org> | 2015-03-10 15:14:41 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-10 22:15:12 +0000 |
commit | 9099f49130311a760ce3fe88b7782a5574e6ba9d (patch) | |
tree | 5bfc4e33e30b155587305e01dcede670ed80a1fa /base/third_party | |
parent | 659061ebdf5119aff7c12ba135554315aae9ea79 (diff) | |
download | chromium_src-9099f49130311a760ce3fe88b7782a5574e6ba9d.zip chromium_src-9099f49130311a760ce3fe88b7782a5574e6ba9d.tar.gz chromium_src-9099f49130311a760ce3fe88b7782a5574e6ba9d.tar.bz2 |
Fix GN NaCl Debug build of base.
BUG=401761
TBR=brettw
CQ_EXTRA_TRYBOTS=tryserver.chromium.linux:android_chromium_gn_compile_dbg,android_chromium_gn_compile_rel;tryserver.chromium.win:win8_chromium_gn_rel,win8_chromium_gn_dbg;tryserver.chromium.mac:mac_chromium_gn_rel,mac_chromium_gn_dbg
Review URL: https://codereview.chromium.org/972203003
Cr-Commit-Position: refs/heads/master@{#319987}
Diffstat (limited to 'base/third_party')
-rw-r--r-- | base/third_party/dynamic_annotations/BUILD.gn | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/base/third_party/dynamic_annotations/BUILD.gn b/base/third_party/dynamic_annotations/BUILD.gn index d6a5123..bc324ae 100644 --- a/base/third_party/dynamic_annotations/BUILD.gn +++ b/base/third_party/dynamic_annotations/BUILD.gn @@ -6,7 +6,10 @@ if (is_nacl) { # Native client doesn't need dynamic annotations, so we provide a # dummy target in order for clients to not have to special-case the # dependency. - group("dynamic_annotations") { + source_set("dynamic_annotations") { + sources = [ + "dynamic_annotations.h", + ] } } else { source_set("dynamic_annotations") { |