OLD | NEW |
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 copy("copy_test_files") { | 5 copy("copy_test_files") { |
6 visibility = [ ":*" ] | 6 visibility = [ ":*" ] |
7 sources = [ | 7 sources = [ |
8 # Keep "test_case.html.mock-http-headers" with "test_case.html". | 8 # Keep "test_case.html.mock-http-headers" with "test_case.html". |
| 9 "tests/ppapi_nacl_tests_newlib.nmf", |
9 "tests/test_case.html", | 10 "tests/test_case.html", |
10 "tests/test_case.html.mock-http-headers", | 11 "tests/test_case.html.mock-http-headers", |
11 "tests/test_page.css", | 12 "tests/test_page.css", |
12 "tests/ppapi_nacl_tests_newlib.nmf", | |
13 ] | 13 ] |
14 outputs = [ | 14 outputs = [ |
15 "$root_out_dir/{{source_file_part}}", | 15 "$root_out_dir/{{source_file_part}}", |
16 ] | 16 ] |
17 } | 17 } |
18 | 18 |
19 copy("copy_test_files2") { | 19 copy("copy_test_files2") { |
20 visibility = [ ":*" ] | 20 visibility = [ ":*" ] |
21 sources = [ | 21 sources = [ |
22 "tests/test_url_loader_data/hello.txt", | 22 "tests/test_url_loader_data/hello.txt", |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 deps = [ | 109 deps = [ |
110 "//base/allocator", | 110 "//base/allocator", |
111 "//base/test:test_support", | 111 "//base/test:test_support", |
112 "//ppapi/proxy", | 112 "//ppapi/proxy", |
113 "//ppapi/proxy:test_support", | 113 "//ppapi/proxy:test_support", |
114 "//ppapi/shared_impl", | 114 "//ppapi/shared_impl", |
115 "//ppapi/shared_impl:test_support", | 115 "//ppapi/shared_impl:test_support", |
116 "//testing/gtest", | 116 "//testing/gtest", |
117 ] | 117 ] |
118 } | 118 } |
| 119 |
| 120 executable("pepper_hash_for_uma") { |
| 121 sources = [ |
| 122 "tools/pepper_hash_for_uma.cc", |
| 123 ] |
| 124 |
| 125 deps = [ |
| 126 "//base", |
| 127 ] |
| 128 } |
OLD | NEW |