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

Side by Side Diff: ios/web/ios_web.gyp

Issue 2246673002: [ios] Made web_main_runner.h header public. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added missing file Created 4 years, 4 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 10 matching lines...) Expand all
21 '../../crypto/crypto.gyp:crypto', 21 '../../crypto/crypto.gyp:crypto',
22 '../../net/net.gyp:net', 22 '../../net/net.gyp:net',
23 '../../ui/base/ui_base.gyp:ui_base', 23 '../../ui/base/ui_base.gyp:ui_base',
24 '../../ui/gfx/gfx.gyp:gfx', 24 '../../ui/gfx/gfx.gyp:gfx',
25 '../../ui/gfx/gfx.gyp:gfx_geometry', 25 '../../ui/gfx/gfx.gyp:gfx_geometry',
26 ], 26 ],
27 'sources': [ 27 'sources': [
28 'app/web_main.mm', 28 'app/web_main.mm',
29 'app/web_main_loop.h', 29 'app/web_main_loop.h',
30 'app/web_main_loop.mm', 30 'app/web_main_loop.mm',
31 'app/web_main_runner.h',
32 'app/web_main_runner.mm', 31 'app/web_main_runner.mm',
33 'public/app/web_main.h', 32 'public/app/web_main.h',
34 'public/app/web_main_delegate.h', 33 'public/app/web_main_delegate.h',
35 'public/app/web_main_parts.h', 34 'public/app/web_main_parts.h',
35 'public/app/web_main_runner.h',
36 ], 36 ],
37 }, 37 },
38 { 38 {
39 # GN version: //ios/web 39 # GN version: //ios/web
40 'target_name': 'ios_web', 40 'target_name': 'ios_web',
41 'type': 'static_library', 41 'type': 'static_library',
42 'include_dirs': [ 42 'include_dirs': [
43 '../..', 43 '../..',
44 ], 44 ],
45 'dependencies': [ 45 'dependencies': [
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 'public/test/web_test_with_web_state.h', 518 'public/test/web_test_with_web_state.h',
519 'public/test/web_test_with_web_state.mm', 519 'public/test/web_test_with_web_state.mm',
520 'test/crw_fake_web_controller_observer.h', 520 'test/crw_fake_web_controller_observer.h',
521 'test/crw_fake_web_controller_observer.mm', 521 'test/crw_fake_web_controller_observer.mm',
522 'test/test_url_constants.cc', 522 'test/test_url_constants.cc',
523 'test/test_url_constants.h', 523 'test/test_url_constants.h',
524 'test/test_web_thread.cc', 524 'test/test_web_thread.cc',
525 'test/test_web_thread_bundle.cc', 525 'test/test_web_thread_bundle.cc',
526 'test/web_int_test.h', 526 'test/web_int_test.h',
527 'test/web_int_test.mm', 527 'test/web_int_test.mm',
528 'test/web_test_suite.mm',
528 'test/web_test_with_web_controller.h', 529 'test/web_test_with_web_controller.h',
529 'test/web_test_with_web_controller.mm', 530 'test/web_test_with_web_controller.mm',
530 'test/web_test_suite.mm',
531 'test/wk_web_view_crash_utils.h', 531 'test/wk_web_view_crash_utils.h',
532 'test/wk_web_view_crash_utils.mm', 532 'test/wk_web_view_crash_utils.mm',
533 ], 533 ],
534 }, 534 },
535 { 535 {
536 # GN version: //ios/web/test:mojo_bindings 536 # GN version: //ios/web/test:mojo_bindings
537 'target_name': 'test_mojo_bindings_mojom', 537 'target_name': 'test_mojo_bindings_mojom',
538 'type': 'none', 538 'type': 'none',
539 'variables': { 539 'variables': {
540 'mojom_files': [ 540 'mojom_files': [
(...skipping 29 matching lines...) Expand all
570 'dependencies': [ 570 'dependencies': [
571 '../../base/base.gyp:base' 571 '../../base/base.gyp:base'
572 ], 572 ],
573 'sources': [ 573 'sources': [
574 'public/user_agent.h', 574 'public/user_agent.h',
575 'public/user_agent.mm', 575 'public/user_agent.mm',
576 ], 576 ],
577 }, 577 },
578 ], 578 ],
579 } 579 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698