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

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

Issue 1450423002: Add glue between the client and engine for Blimp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blimp_ipc2
Patch Set: Fix build break Created 5 years 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
« no previous file with comments | « blimp/engine/DEPS ('k') | blimp/engine/browser/blimp_engine_session.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 source_set("browser") { 5 source_set("browser") {
6 sources = [ 6 sources = [
7 "blimp_browser_context.cc", 7 "blimp_browser_context.cc",
8 "blimp_browser_context.h", 8 "blimp_browser_context.h",
9 "blimp_browser_main_parts.cc", 9 "blimp_browser_main_parts.cc",
10 "blimp_browser_main_parts.h", 10 "blimp_browser_main_parts.h",
11 "blimp_content_browser_client.cc", 11 "blimp_content_browser_client.cc",
12 "blimp_content_browser_client.h", 12 "blimp_content_browser_client.h",
13 "blimp_engine_session.cc", 13 "blimp_engine_session.cc",
14 "blimp_engine_session.h", 14 "blimp_engine_session.h",
15 "blimp_network_delegate.cc", 15 "blimp_network_delegate.cc",
16 "blimp_network_delegate.h", 16 "blimp_network_delegate.h",
17 "blimp_permission_manager.cc", 17 "blimp_permission_manager.cc",
18 "blimp_permission_manager.h", 18 "blimp_permission_manager.h",
19 "blimp_url_request_context_getter.cc", 19 "blimp_url_request_context_getter.cc",
20 "blimp_url_request_context_getter.h", 20 "blimp_url_request_context_getter.h",
21 "engine_render_widget_message_processor.cc",
22 "engine_render_widget_message_processor.h",
21 ] 23 ]
22 24
23 deps = [ 25 deps = [
24 "//base", 26 "//base",
25 "//blimp/common/proto", 27 "//blimp/common/proto",
26 "//blimp/engine/ui", 28 "//blimp/engine/ui",
27 "//blimp/net:blimp_net", 29 "//blimp/net:blimp_net",
28 "//content", 30 "//content",
29 "//content/public/browser", 31 "//content/public/browser",
30 "//content/public/common", 32 "//content/public/common",
31 "//content/public/utility", 33 "//content/public/utility",
32 "//net", 34 "//net",
33 "//ui/base", 35 "//ui/base",
34 "//ui/base/ime", 36 "//ui/base/ime",
35 "//ui/resources", 37 "//ui/resources",
36 "//ui/wm", 38 "//ui/wm",
37 ] 39 ]
38 } 40 }
41
42 source_set("unit_tests") {
43 testonly = true
44
45 sources = [
46 "engine_render_widget_message_processor_unittest.cc",
47 ]
48
49 deps = [
50 ":browser",
51 "//base",
52 "//base/test:run_all_unittests",
53 "//base/test:test_support",
54 "//blimp/common/proto",
55 "//blimp/engine/common",
56 "//blimp/net:blimp_net",
57 "//testing/gmock",
58 "//testing/gtest",
59 ]
60 }
OLDNEW
« no previous file with comments | « blimp/engine/DEPS ('k') | blimp/engine/browser/blimp_engine_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698