| 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 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 sources = [ | 32 sources = [ |
| 33 "blimp_client_context.h", | 33 "blimp_client_context.h", |
| 34 "blimp_client_context_delegate.h", | 34 "blimp_client_context_delegate.h", |
| 35 "compositor/compositor_dependencies.h", | 35 "compositor/compositor_dependencies.h", |
| 36 "contents/blimp_contents.h", | 36 "contents/blimp_contents.h", |
| 37 "contents/blimp_contents_observer.cc", | 37 "contents/blimp_contents_observer.cc", |
| 38 "contents/blimp_contents_observer.h", | 38 "contents/blimp_contents_observer.h", |
| 39 "contents/blimp_contents_view.h", | 39 "contents/blimp_contents_view.h", |
| 40 "contents/blimp_navigation_controller.h", | 40 "contents/blimp_navigation_controller.h", |
| 41 "resources/blimp_strings.h", |
| 41 "session/assignment.cc", | 42 "session/assignment.cc", |
| 42 "session/assignment.h", | 43 "session/assignment.h", |
| 43 ] | 44 ] |
| 44 | 45 |
| 45 public_deps = [ | 46 public_deps = [ |
| 46 "//base", | 47 "//base", |
| 47 "//cc/surfaces:surface_id", | 48 "//cc/surfaces:surface_id", |
| 48 "//components/keyed_service/core", | 49 "//components/keyed_service/core", |
| 49 "//net", | 50 "//net", |
| 50 "//ui/gfx:native_widget_types", | 51 "//ui/gfx:native_widget_types", |
| 51 "//url", | 52 "//url", |
| 52 ] | 53 ] |
| 53 | 54 |
| 55 deps = [ |
| 56 "//blimp/common/proto", |
| 57 ] |
| 58 |
| 54 if (is_android) { | 59 if (is_android) { |
| 55 sources += [ "android/blimp_jni_registrar.h" ] | 60 sources += [ "android/blimp_jni_registrar.h" ] |
| 56 } | 61 } |
| 57 } | 62 } |
| 58 | 63 |
| 59 if (is_android) { | 64 if (is_android) { |
| 60 # Only //chrome should ever depend on this. Code in //blimp/client/* should | 65 # Only //chrome should ever depend on this. Code in //blimp/client/* should |
| 61 # instead use //blimp/client/public:public_headers_java directly. This target | 66 # instead use //blimp/client/public:public_headers_java directly. This target |
| 62 # differs from :public_headers_java by pulling in the appropriate | 67 # differs from :public_headers_java by pulling in the appropriate |
| 63 # implementation as well as the headers. | 68 # implementation as well as the headers. |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 } | 102 } |
| 98 | 103 |
| 99 java_cpp_enum("public_headers_java_enums_srcjar") { | 104 java_cpp_enum("public_headers_java_enums_srcjar") { |
| 100 visibility = [ ":*" ] | 105 visibility = [ ":*" ] |
| 101 | 106 |
| 102 sources = [ | 107 sources = [ |
| 103 "session/assignment.h", | 108 "session/assignment.h", |
| 104 ] | 109 ] |
| 105 } | 110 } |
| 106 } | 111 } |
| OLD | NEW |