| 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 # Only //chrome should ever depend on this. Code in //blimp/client/* should | 10 # Only //chrome should ever depend on this. Code in //blimp/client/* should |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 "contents/blimp_contents_observer.h", | 37 "contents/blimp_contents_observer.h", |
| 38 "contents/blimp_navigation_controller.h", | 38 "contents/blimp_navigation_controller.h", |
| 39 "session/assignment.cc", | 39 "session/assignment.cc", |
| 40 "session/assignment.h", | 40 "session/assignment.h", |
| 41 ] | 41 ] |
| 42 | 42 |
| 43 public_deps = [ | 43 public_deps = [ |
| 44 "//base", | 44 "//base", |
| 45 "//components/keyed_service/core", | 45 "//components/keyed_service/core", |
| 46 "//net", | 46 "//net", |
| 47 "//ui/gfx:native_widget_types", |
| 47 "//url", | 48 "//url", |
| 48 ] | 49 ] |
| 49 | 50 |
| 50 if (is_android) { | 51 if (is_android) { |
| 51 sources += [ "android/blimp_jni_registrar.h" ] | 52 sources += [ "android/blimp_jni_registrar.h" ] |
| 52 } | 53 } |
| 53 } | 54 } |
| 54 | 55 |
| 55 if (is_android) { | 56 if (is_android) { |
| 56 # Only //chrome should ever depend on this. Code in //blimp/client/* should | 57 # Only //chrome should ever depend on this. Code in //blimp/client/* should |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 } | 94 } |
| 94 | 95 |
| 95 java_cpp_enum("public_headers_java_enums_srcjar") { | 96 java_cpp_enum("public_headers_java_enums_srcjar") { |
| 96 visibility = [ ":*" ] | 97 visibility = [ ":*" ] |
| 97 | 98 |
| 98 sources = [ | 99 sources = [ |
| 99 "session/assignment.h", | 100 "session/assignment.h", |
| 100 ] | 101 ] |
| 101 } | 102 } |
| 102 } | 103 } |
| OLD | NEW |