Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.gni") |
| 8 } | 8 } |
| 9 | 9 |
| 10 source_set("feedback") { | 10 source_set("feedback") { |
| 11 visibility = [ "//blimp/client/core/*" ] | 11 visibility = [ "//blimp/client/core/*" ] |
| 12 | 12 |
| 13 sources = [ | 13 sources = [ |
| 14 "blimp_feedback_data.cc", | 14 "blimp_feedback_data.cc", |
| 15 "blimp_feedback_data.h", | 15 "blimp_feedback_data.h", |
| 16 ] | 16 ] |
| 17 | 17 |
| 18 deps = [ | 18 deps = [ |
| 19 "//base", | 19 "//base", |
| 20 "//blimp/client/core/contents", | 20 "//blimp/client/core/contents", |
| 21 "//skia", | |
|
Khushal
2016/10/03 20:04:59
Is skia needed here?
xingliu
2016/10/04 18:33:49
Removed, I think I got gn check failed before reba
| |
| 21 ] | 22 ] |
| 22 | 23 |
| 23 if (is_android) { | 24 if (is_android) { |
| 24 sources += [ | 25 sources += [ |
| 25 "android/blimp_feedback_data_android.cc", | 26 "android/blimp_feedback_data_android.cc", |
| 26 "android/blimp_feedback_data_android.h", | 27 "android/blimp_feedback_data_android.h", |
| 27 ] | 28 ] |
| 28 | 29 |
| 29 deps += [ ":feedback_jni_headers" ] | 30 deps += [ ":feedback_jni_headers" ] |
| 30 } | 31 } |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 65 generate_jni("feedback_jni_headers") { | 66 generate_jni("feedback_jni_headers") { |
| 66 visibility = [ ":*" ] | 67 visibility = [ ":*" ] |
| 67 | 68 |
| 68 sources = [ | 69 sources = [ |
| 69 "android/java/src/org/chromium/blimp/core/feedback/BlimpFeedbackData.java" , | 70 "android/java/src/org/chromium/blimp/core/feedback/BlimpFeedbackData.java" , |
| 70 ] | 71 ] |
| 71 | 72 |
| 72 jni_package = "blimp/client/core" | 73 jni_package = "blimp/client/core" |
| 73 } | 74 } |
| 74 } | 75 } |
| OLD | NEW |