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

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

Issue 2402293002: Add a Javascript wrapper for InterfaceRegistry. (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « no previous file | content/shell/renderer/layout_test/interface_registry_js_wrapper.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/config/win/console_app.gni") 8 import("//build/config/win/console_app.gni")
9 import("//build/config/win/manifest.gni") 9 import("//build/config/win/manifest.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 "common/shell_origin_trial_policy.cc", 164 "common/shell_origin_trial_policy.cc",
165 "common/shell_origin_trial_policy.h", 165 "common/shell_origin_trial_policy.h",
166 "common/shell_switches.cc", 166 "common/shell_switches.cc",
167 "common/shell_switches.h", 167 "common/shell_switches.h",
168 "common/shell_test_configuration.cc", 168 "common/shell_test_configuration.cc",
169 "common/shell_test_configuration.h", 169 "common/shell_test_configuration.h",
170 "renderer/layout_test/blink_test_helpers.cc", 170 "renderer/layout_test/blink_test_helpers.cc",
171 "renderer/layout_test/blink_test_helpers.h", 171 "renderer/layout_test/blink_test_helpers.h",
172 "renderer/layout_test/blink_test_runner.cc", 172 "renderer/layout_test/blink_test_runner.cc",
173 "renderer/layout_test/blink_test_runner.h", 173 "renderer/layout_test/blink_test_runner.h",
174 "renderer/layout_test/interface_registry_js_wrapper.cc",
175 "renderer/layout_test/interface_registry_js_wrapper.h",
174 "renderer/layout_test/layout_test_content_renderer_client.cc", 176 "renderer/layout_test/layout_test_content_renderer_client.cc",
175 "renderer/layout_test/layout_test_content_renderer_client.h", 177 "renderer/layout_test/layout_test_content_renderer_client.h",
176 "renderer/layout_test/layout_test_render_frame_observer.cc", 178 "renderer/layout_test/layout_test_render_frame_observer.cc",
177 "renderer/layout_test/layout_test_render_frame_observer.h", 179 "renderer/layout_test/layout_test_render_frame_observer.h",
178 "renderer/layout_test/layout_test_render_thread_observer.cc", 180 "renderer/layout_test/layout_test_render_thread_observer.cc",
179 "renderer/layout_test/layout_test_render_thread_observer.h", 181 "renderer/layout_test/layout_test_render_thread_observer.h",
180 "renderer/layout_test/leak_detector.cc", 182 "renderer/layout_test/leak_detector.cc",
181 "renderer/layout_test/leak_detector.h", 183 "renderer/layout_test/leak_detector.h",
182 "renderer/layout_test/test_media_stream_renderer_factory.cc", 184 "renderer/layout_test/test_media_stream_renderer_factory.cc",
183 "renderer/layout_test/test_media_stream_renderer_factory.h", 185 "renderer/layout_test/test_media_stream_renderer_factory.h",
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 "//content/test:content_test_mojo_bindings", 233 "//content/test:content_test_mojo_bindings",
232 "//content/test:layouttest_support", 234 "//content/test:layouttest_support",
233 "//content/test:test_support", 235 "//content/test:test_support",
234 "//device/bluetooth", 236 "//device/bluetooth",
235 "//device/bluetooth:mocks", 237 "//device/bluetooth:mocks",
236 "//device/geolocation", 238 "//device/geolocation",
237 "//gin", 239 "//gin",
238 "//gpu", 240 "//gpu",
239 "//ipc", 241 "//ipc",
240 "//media", 242 "//media",
243 "//mojo/edk/js",
241 "//net", 244 "//net",
242 "//net:net_resources", 245 "//net:net_resources",
243 "//sandbox", 246 "//sandbox",
244 "//services/shell/public/cpp", 247 "//services/shell/public/cpp",
245 "//skia", 248 "//skia",
246 "//storage/browser", 249 "//storage/browser",
247 "//testing/gmock", 250 "//testing/gmock",
248 "//testing/gtest", 251 "//testing/gtest",
249 "//third_party/WebKit/public:blink", 252 "//third_party/WebKit/public:blink",
250 "//third_party/WebKit/public:image_resources", 253 "//third_party/WebKit/public:image_resources",
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
737 "{{bundle_resources_dir}}/{{source_file_part}}", 740 "{{bundle_resources_dir}}/{{source_file_part}}",
738 ] 741 ]
739 } 742 }
740 } 743 }
741 744
742 mojom("mojo_bindings") { 745 mojom("mojo_bindings") {
743 sources = [ 746 sources = [
744 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", 747 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom",
745 ] 748 ]
746 } 749 }
OLDNEW
« no previous file with comments | « no previous file | content/shell/renderer/layout_test/interface_registry_js_wrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698