Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: sdch/BUILD.gn

Issue 824373003: Add browser_tests to the GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More ChromeOS Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/media.gyp ('k') | testing/perf/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 config("sdch_config") { 5 config("sdch_config") {
6 include_dirs = [ "open-vcdiff/src" ] 6 include_dirs = [ "open-vcdiff/src" ]
7 } 7 }
8 8
9 static_library("sdch") { 9 static_library("sdch") {
10 sources = [ 10 sources = [
11 "logging_forward.h", 11 "logging_forward.h",
12 "open-vcdiff/src/addrcache.cc", 12 "open-vcdiff/src/addrcache.cc",
13 "open-vcdiff/src/blockhash.cc", 13 "open-vcdiff/src/blockhash.cc",
14 "open-vcdiff/src/blockhash.h", 14 "open-vcdiff/src/blockhash.h",
15 "open-vcdiff/src/checksum.h", 15 "open-vcdiff/src/checksum.h",
16 "open-vcdiff/src/codetable.cc", 16 "open-vcdiff/src/codetable.cc",
17 "open-vcdiff/src/codetable.h", 17 "open-vcdiff/src/codetable.h",
18 "open-vcdiff/src/compile_assert.h", 18 "open-vcdiff/src/compile_assert.h",
19 "open-vcdiff/src/decodetable.cc", 19 "open-vcdiff/src/decodetable.cc",
20 "open-vcdiff/src/decodetable.h", 20 "open-vcdiff/src/decodetable.h",
21 "open-vcdiff/src/encodetable.cc", 21 "open-vcdiff/src/encodetable.cc",
22 "open-vcdiff/src/encodetable.h", 22 "open-vcdiff/src/encodetable.h",
23 "open-vcdiff/src/google/output_string.h", 23 "open-vcdiff/src/google/output_string.h",
24 "open-vcdiff/src/google/vcdecoder.h", 24 "open-vcdiff/src/google/vcdecoder.h",
25 "open-vcdiff/src/google/vcencoder.h",
25 "open-vcdiff/src/headerparser.cc", 26 "open-vcdiff/src/headerparser.cc",
26 "open-vcdiff/src/headerparser.h", 27 "open-vcdiff/src/headerparser.h",
27 "open-vcdiff/src/instruction_map.cc", 28 "open-vcdiff/src/instruction_map.cc",
28 "open-vcdiff/src/instruction_map.h", 29 "open-vcdiff/src/instruction_map.h",
30 "open-vcdiff/src/jsonwriter.h",
31 "open-vcdiff/src/jsonwriter.cc",
29 "open-vcdiff/src/rolling_hash.h", 32 "open-vcdiff/src/rolling_hash.h",
30 "open-vcdiff/src/testing.h", 33 "open-vcdiff/src/testing.h",
31 "open-vcdiff/src/varint_bigendian.cc", 34 "open-vcdiff/src/varint_bigendian.cc",
32 "open-vcdiff/src/varint_bigendian.h", 35 "open-vcdiff/src/varint_bigendian.h",
33 "open-vcdiff/src/vcdecoder.cc", 36 "open-vcdiff/src/vcdecoder.cc",
37 "open-vcdiff/src/vcencoder.cc",
34 "open-vcdiff/src/vcdiff_defs.h", 38 "open-vcdiff/src/vcdiff_defs.h",
35 "open-vcdiff/src/vcdiffengine.cc", 39 "open-vcdiff/src/vcdiffengine.cc",
36 "open-vcdiff/src/vcdiffengine.h", 40 "open-vcdiff/src/vcdiffengine.h",
37 "open-vcdiff/vsprojects/config.h", 41 "open-vcdiff/vsprojects/config.h",
38 "open-vcdiff/vsprojects/stdint.h", 42 "open-vcdiff/vsprojects/stdint.h",
39 ] 43 ]
40 44
41 public_configs = [ ":sdch_config" ] 45 public_configs = [ ":sdch_config" ]
42 46
43 deps = [ 47 deps = [
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 "sdch/logging_forward.h", 90 "sdch/logging_forward.h",
87 ] 91 ]
88 } else { 92 } else {
89 logging_file = rebase_path("logging_forward.h", root_build_dir) 93 logging_file = rebase_path("logging_forward.h", root_build_dir)
90 cflags = [ 94 cflags = [
91 "-include", 95 "-include",
92 logging_file, 96 logging_file,
93 ] 97 ]
94 } 98 }
95 } 99 }
OLDNEW
« no previous file with comments | « media/media.gyp ('k') | testing/perf/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698