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

Side by Side Diff: blimp/test/BUILD.gn

Issue 2033013003: Use shared memory for moving data over BlobChannel Mojo interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blobchannel-master
Patch Set: Added new test runner with Mojo initialization Created 4 years, 6 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
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 source_set("run_all_unittests") {
8 sources = [
9 "run_all_unittests.cc"
10 ]
11
12 deps = [
13 "//mojo/edk/system",
14 ]
15 }
16
7 source_set("engine_browsertests") { 17 source_set("engine_browsertests") {
8 testonly = true 18 testonly = true
9 19
10 sources = [ 20 sources = [
11 "browser_tests/blimp_browser_test.cc", 21 "browser_tests/blimp_browser_test.cc",
12 "browser_tests/blimp_browser_test.h", 22 "browser_tests/blimp_browser_test.h",
13 "browser_tests/blimp_test_launcher.cc", 23 "browser_tests/blimp_test_launcher.cc",
14 "browser_tests/engine_browsertest.cc", 24 "browser_tests/engine_browsertest.cc",
15 ] 25 ]
16 26
(...skipping 18 matching lines...) Expand all
35 "//content/test:test_support", 45 "//content/test:test_support",
36 "//testing/gmock", 46 "//testing/gmock",
37 "//testing/gtest", 47 "//testing/gtest",
38 ] 48 ]
39 49
40 data = [ 50 data = [
41 "data/", 51 "data/",
42 "$root_out_dir/blimp_engine.pak", 52 "$root_out_dir/blimp_engine.pak",
43 ] 53 ]
44 } 54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698