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

Side by Side Diff: blimp/client/core/feedback/BUILD.gn

Issue 2362693003: Add framework for sending feedback for Blimp. (Closed)
Patch Set: Rebased for good measure Created 4 years, 2 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
(Empty)
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
3 # found in the LICENSE file.
4
5 if (is_android) {
6 import("//build/config/android/config.gni")
7 import("//build/config/android/rules.gni")
8 }
9
10 source_set("feedback") {
11 visibility = [ "//blimp/client/core/*" ]
12
13 sources = [
14 "blimp_feedback_data.cc",
15 "blimp_feedback_data.h",
16 ]
17
18 deps = [
19 "//base",
20 ]
21
22 if (is_android) {
23 sources += [
24 "android/blimp_feedback_data_android.cc",
25 "android/blimp_feedback_data_android.h",
26 ]
27
28 deps += [ ":feedback_jni_headers" ]
29 }
30 }
31
32 source_set("unit_tests") {
33 visibility = [ "//blimp/client/core:unit_tests" ]
34
35 testonly = true
36
37 sources = [
38 "blimp_feedback_data_unittest.cc",
39 ]
40
41 deps = [
42 ":feedback",
43 "//testing/gtest",
44 ]
45 }
46
47 if (is_android) {
48 android_library("feedback_java") {
49 visibility = [ "//blimp/client/core/*" ]
50
51 java_files = [ "android/java/src/org/chromium/blimp/core/feedback/BlimpFeedb ackData.java" ]
52
53 deps = [
54 "//base:base_java",
55 ]
56 }
57
58 generate_jni("feedback_jni_headers") {
59 visibility = [ ":*" ]
60
61 sources = [
62 "android/java/src/org/chromium/blimp/core/feedback/BlimpFeedbackData.java" ,
63 ]
64
65 jni_package = "blimp/client/core"
66 }
67 }
OLDNEW
« no previous file with comments | « blimp/client/core/blimp_client_context_impl.cc ('k') | blimp/client/core/feedback/android/blimp_feedback_data_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698