| 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 14 matching lines...) Expand all Loading... |
| 25 # duplicate symbols regardless of whether enable_blimp_client is set or not. | 25 # duplicate symbols regardless of whether enable_blimp_client is set or not. |
| 26 source_set("public_headers") { | 26 source_set("public_headers") { |
| 27 visibility = [ | 27 visibility = [ |
| 28 "//blimp/client/*", | 28 "//blimp/client/*", |
| 29 "//blimp/test/*", | 29 "//blimp/test/*", |
| 30 ] | 30 ] |
| 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 "contents/blimp_contents.h", | 36 "contents/blimp_contents.h", |
| 36 "contents/blimp_contents_observer.cc", | 37 "contents/blimp_contents_observer.cc", |
| 37 "contents/blimp_contents_observer.h", | 38 "contents/blimp_contents_observer.h", |
| 38 "contents/blimp_navigation_controller.h", | 39 "contents/blimp_navigation_controller.h", |
| 39 "session/assignment.cc", | 40 "session/assignment.cc", |
| 40 "session/assignment.h", | 41 "session/assignment.h", |
| 41 ] | 42 ] |
| 42 | 43 |
| 43 public_deps = [ | 44 public_deps = [ |
| 44 "//base", | 45 "//base", |
| (...skipping 48 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 |