diff options
author | vchigrin <vchigrin@yandex-team.ru> | 2015-01-24 09:10:05 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-24 17:10:43 +0000 |
commit | 1279e919c020f60c785a0c6b0261ba339b72dd57 (patch) | |
tree | 9e0b81797bbf31a4e6bbb5faa49e9e422d804983 /third_party/bspatch | |
parent | bca2a0be0924009ef5f8dc0e299c0efbb95a4d67 (diff) | |
download | chromium_src-1279e919c020f60c785a0c6b0261ba339b72dd57.zip chromium_src-1279e919c020f60c785a0c6b0261ba339b72dd57.tar.gz chromium_src-1279e919c020f60c785a0c6b0261ba339b72dd57.tar.bz2 |
Add GN files for bspatch.
Review URL: https://codereview.chromium.org/868193002
Cr-Commit-Position: refs/heads/master@{#313023}
Diffstat (limited to 'third_party/bspatch')
-rw-r--r-- | third_party/bspatch/BUILD.gn | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/third_party/bspatch/BUILD.gn b/third_party/bspatch/BUILD.gn new file mode 100644 index 0000000..3929615 --- /dev/null +++ b/third_party/bspatch/BUILD.gn @@ -0,0 +1,17 @@ +# Copyright 2015 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +source_set("bspatch") { + sources = [ + "mbspatch.cc", + "mbspatch.h", + ] + + configs -= [ "//build/config/compiler:chromium_code" ] + configs += [ "//build/config/compiler:no_chromium_code" ] + + deps = [ + "//third_party/lzma_sdk", + ] +} |