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

Side by Side Diff: ios/web/BUILD.gn

Issue 1929783002: [ios Mojo] Supporting code for define WebUI function. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mojo_require_js
Patch Set: Actually use Map API Created 4 years, 7 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 | ios/web/ios_web.gyp » ('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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//testing/test.gni") 5 import("//testing/test.gni")
6 import("//ios/web/js_compile.gni") 6 import("//ios/web/js_compile.gni")
7 7
8 source_set("web") { 8 source_set("web") {
9 deps = [ 9 deps = [
10 ":core", 10 ":core",
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 "public/test/test_web_client.h", 319 "public/test/test_web_client.h",
320 "public/test/test_web_client.mm", 320 "public/test/test_web_client.mm",
321 "public/test/test_web_state.h", 321 "public/test/test_web_state.h",
322 "public/test/test_web_state.mm", 322 "public/test/test_web_state.mm",
323 "public/test/test_web_thread.h", 323 "public/test/test_web_thread.h",
324 "public/test/test_web_thread_bundle.h", 324 "public/test/test_web_thread_bundle.h",
325 "public/test/test_web_view_content_view.h", 325 "public/test/test_web_view_content_view.h",
326 "public/test/test_web_view_content_view.mm", 326 "public/test/test_web_view_content_view.mm",
327 "test/crw_fake_web_controller_observer.h", 327 "test/crw_fake_web_controller_observer.h",
328 "test/crw_fake_web_controller_observer.mm", 328 "test/crw_fake_web_controller_observer.mm",
329 "test/test_url_constants.cc",
330 "test/test_url_constants.h",
329 "test/test_web_thread.cc", 331 "test/test_web_thread.cc",
330 "test/test_web_thread_bundle.cc", 332 "test/test_web_thread_bundle.cc",
331 "test/web_int_test.h", 333 "test/web_int_test.h",
332 "test/web_int_test.mm", 334 "test/web_int_test.mm",
333 "test/web_test.h", 335 "test/web_test.h",
334 "test/web_test.mm", 336 "test/web_test.mm",
335 "test/web_test_suite.cc", 337 "test/web_test_suite.cc",
336 "test/web_test_suite.h", 338 "test/web_test_suite.h",
337 "test/wk_web_view_crash_utils.h", 339 "test/wk_web_view_crash_utils.h",
338 "test/wk_web_view_crash_utils.mm", 340 "test/wk_web_view_crash_utils.mm",
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 "public/test/http_server_inttest.mm", 440 "public/test/http_server_inttest.mm",
439 "test/run_all_unittests.cc", 441 "test/run_all_unittests.cc",
440 ] 442 ]
441 } 443 }
442 444
443 js_compile_bundle("web_ui_bundle") { 445 js_compile_bundle("web_ui_bundle") {
444 visibility = [ ":js_resources" ] 446 visibility = [ ":js_resources" ]
445 closure_entry_point = "__crWeb.webUIBundle" 447 closure_entry_point = "__crWeb.webUIBundle"
446 448
447 sources = [ 449 sources = [
450 "../third_party/requirejs/require.js",
448 "webui/resources/web_ui_base.js", 451 "webui/resources/web_ui_base.js",
449 "webui/resources/web_ui_bind.js", 452 "webui/resources/web_ui_bind.js",
450 "webui/resources/web_ui_bundle.js", 453 "webui/resources/web_ui_bundle.js",
451 "webui/resources/web_ui_favicons.js", 454 "webui/resources/web_ui_favicons.js",
455 "webui/resources/web_ui_module_load_notifier.js",
452 "webui/resources/web_ui_send.js", 456 "webui/resources/web_ui_send.js",
453 ] 457 ]
454 } 458 }
455 459
456 js_compile_bundle("web_bundle") { 460 js_compile_bundle("web_bundle") {
457 visibility = [ ":js_resources" ] 461 visibility = [ ":js_resources" ]
458 closure_entry_point = "__crWeb.webBundle" 462 closure_entry_point = "__crWeb.webBundle"
459 463
460 sources = [ 464 sources = [
461 "web_state/js/resources/base.js", 465 "web_state/js/resources/base.js",
(...skipping 11 matching lines...) Expand all
473 ":web_bundle", 477 ":web_bundle",
474 ":web_ui_bundle", 478 ":web_ui_bundle",
475 ] 479 ]
476 480
477 sources = [ 481 sources = [
478 "web_state/js/resources/plugin_placeholder.js", 482 "web_state/js/resources/plugin_placeholder.js",
479 "web_state/js/resources/post_request.js", 483 "web_state/js/resources/post_request.js",
480 "web_state/js/resources/window_id.js", 484 "web_state/js/resources/window_id.js",
481 ] 485 ]
482 } 486 }
OLDNEW
« no previous file with comments | « no previous file | ios/web/ios_web.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698