| 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 import("//build/config/android/rules.gni") | 5 import("//build/config/android/rules.gni") |
| 6 | 6 |
| 7 # GYP: //testing/android/native_test.gyp:native_test_native_code | 7 # GYP: //testing/android/native_test.gyp:native_test_native_code |
| 8 source_set("native_test_native_code") { | 8 source_set("native_test_native_code") { |
| 9 testonly = true | 9 testonly = true |
| 10 sources = [ | 10 sources = [ |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 # GYP: //testing/android/native_test.gyp:native_test_util | 34 # GYP: //testing/android/native_test.gyp:native_test_util |
| 35 source_set("native_test_util") { | 35 source_set("native_test_util") { |
| 36 sources = [ | 36 sources = [ |
| 37 "native_test_util.cc", | 37 "native_test_util.cc", |
| 38 "native_test_util.h", | 38 "native_test_util.h", |
| 39 ] | 39 ] |
| 40 deps = [ | 40 deps = [ |
| 41 "//base", | 41 "//base", |
| 42 ] | 42 ] |
| 43 } | 43 } |
| OLD | NEW |