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

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

Issue 2462183002: GRPC Stream implementation of HeliumStream
Patch Set: Fixed a few minor comments Created 4 years, 1 month 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/sanitizers/sanitizers.gni") 7 import("//build/config/sanitizers/sanitizers.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//mojo/public/tools/bindings/mojom.gni") 9 import("//mojo/public/tools/bindings/mojom.gni")
10 import("//tools/grit/repack.gni") 10 import("//tools/grit/repack.gni")
(...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
804 "//content/test:test_support", 804 "//content/test:test_support",
805 "//testing/gmock", 805 "//testing/gmock",
806 "//testing/gtest", 806 "//testing/gtest",
807 ] 807 ]
808 808
809 data = [ 809 data = [
810 "//blimp/test/data/", 810 "//blimp/test/data/",
811 "$root_out_dir/blimp_engine.pak", 811 "$root_out_dir/blimp_engine.pak",
812 ] 812 ]
813 } 813 }
814
815 source_set("browser_tests_grpc") {
816 testonly = true
817 sources = [
818 "browser_tests/grpc_assignment.cc",
819 ]
820
821 deps = [
822 ":browser_tests",
823 ]
824 }
825
826 source_set("browser_tests_tcp") {
827 testonly = true
828 sources = [
829 "browser_tests/tcp_assignment.cc",
830 ]
831
832 deps = [
833 ":browser_tests",
834 ]
835 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698