| 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/ppapi_nacl_tests_newlib.nmf", |
| 10 "tests/test_case.html", | 10 "tests/test_case.html", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 include_dirs = [ "lib/gl/include" ] | 37 include_dirs = [ "lib/gl/include" ] |
| 38 | 38 |
| 39 deps = [ | 39 deps = [ |
| 40 "//ppapi/cpp", | 40 "//ppapi/cpp", |
| 41 "//ppapi/shared_impl", | 41 "//ppapi/shared_impl", |
| 42 ":copy_test_files", | 42 ":copy_test_files", |
| 43 ":copy_test_files2", | 43 ":copy_test_files2", |
| 44 ] | 44 ] |
| 45 } | 45 } |
| 46 | 46 |
| 47 shared_library("power_saver_test_plugin") { |
| 48 sources = [ |
| 49 "tests/power_saver_test_plugin.cc", |
| 50 "tests/test_utils.cc", |
| 51 ] |
| 52 |
| 53 deps = [ |
| 54 "//ppapi/cpp", |
| 55 "//ppapi/shared_impl", |
| 56 ] |
| 57 } |
| 58 |
| 47 test("ppapi_unittests") { | 59 test("ppapi_unittests") { |
| 48 sources = [ | 60 sources = [ |
| 49 "host/resource_message_filter_unittest.cc", | 61 "host/resource_message_filter_unittest.cc", |
| 50 "proxy/device_enumeration_resource_helper_unittest.cc", | 62 "proxy/device_enumeration_resource_helper_unittest.cc", |
| 51 "proxy/file_chooser_resource_unittest.cc", | 63 "proxy/file_chooser_resource_unittest.cc", |
| 52 "proxy/file_system_resource_unittest.cc", | 64 "proxy/file_system_resource_unittest.cc", |
| 53 "proxy/flash_resource_unittest.cc", | 65 "proxy/flash_resource_unittest.cc", |
| 54 "proxy/interface_list_unittest.cc", | 66 "proxy/interface_list_unittest.cc", |
| 55 "proxy/mock_resource.cc", | 67 "proxy/mock_resource.cc", |
| 56 "proxy/mock_resource.h", | 68 "proxy/mock_resource.h", |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 | 130 |
| 119 executable("pepper_hash_for_uma") { | 131 executable("pepper_hash_for_uma") { |
| 120 sources = [ | 132 sources = [ |
| 121 "tools/pepper_hash_for_uma.cc", | 133 "tools/pepper_hash_for_uma.cc", |
| 122 ] | 134 ] |
| 123 | 135 |
| 124 deps = [ | 136 deps = [ |
| 125 "//base", | 137 "//base", |
| 126 ] | 138 ] |
| 127 } | 139 } |
| OLD | NEW |