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

Side by Side Diff: content/renderer/BUILD.gn

Issue 2488573002: Refactor getInstalledRelatedApps code and add manifest logic and tests. (Closed)
Patch Set: Rebase. Created 3 years, 10 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
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/split_static_library.gni") 8 import("//build/split_static_library.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 import("//ppapi/features/features.gni") 10 import("//ppapi/features/features.gni")
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 "input/input_handler_manager_client.h", 170 "input/input_handler_manager_client.h",
171 "input/input_handler_wrapper.cc", 171 "input/input_handler_wrapper.cc",
172 "input/input_handler_wrapper.h", 172 "input/input_handler_wrapper.h",
173 "input/main_thread_event_queue.cc", 173 "input/main_thread_event_queue.cc",
174 "input/main_thread_event_queue.h", 174 "input/main_thread_event_queue.h",
175 "input/main_thread_input_event_filter.cc", 175 "input/main_thread_input_event_filter.cc",
176 "input/main_thread_input_event_filter.h", 176 "input/main_thread_input_event_filter.h",
177 "input/render_widget_input_handler.cc", 177 "input/render_widget_input_handler.cc",
178 "input/render_widget_input_handler.h", 178 "input/render_widget_input_handler.h",
179 "input/render_widget_input_handler_delegate.h", 179 "input/render_widget_input_handler_delegate.h",
180 "installedapp/related_apps_fetcher.cc",
181 "installedapp/related_apps_fetcher.h",
180 "internal_document_state_data.cc", 182 "internal_document_state_data.cc",
181 "internal_document_state_data.h", 183 "internal_document_state_data.h",
182 "java/gin_java_bridge_dispatcher.cc", 184 "java/gin_java_bridge_dispatcher.cc",
183 "java/gin_java_bridge_dispatcher.h", 185 "java/gin_java_bridge_dispatcher.h",
184 "java/gin_java_bridge_object.cc", 186 "java/gin_java_bridge_object.cc",
185 "java/gin_java_bridge_object.h", 187 "java/gin_java_bridge_object.h",
186 "java/gin_java_bridge_value_converter.cc", 188 "java/gin_java_bridge_value_converter.cc",
187 "java/gin_java_bridge_value_converter.h", 189 "java/gin_java_bridge_value_converter.h",
188 "java/gin_java_function_invocation_helper.cc", 190 "java/gin_java_function_invocation_helper.cc",
189 "java/gin_java_function_invocation_helper.h", 191 "java/gin_java_function_invocation_helper.h",
(...skipping 744 matching lines...) Expand 10 before | Expand all | Expand 10 after
934 # For the defines in mojo_media_config. 936 # For the defines in mojo_media_config.
935 public_configs = [ "//media/mojo/services:mojo_media_config" ] 937 public_configs = [ "//media/mojo/services:mojo_media_config" ]
936 } 938 }
937 939
938 if (!is_component_build) { 940 if (!is_component_build) {
939 public_deps = [ 941 public_deps = [
940 ":renderer", 942 ":renderer",
941 ] 943 ]
942 } 944 }
943 } 945 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698