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

Side by Side Diff: mojo/mojo_apps.gypi

Issue 268593002: Move existing Mojo JS <--> CPP tests out of webui test harness. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix JS busted when I alphebetized dependency list. Created 6 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 | Annotate | Revision Log
« no previous file with comments | « mojo/apps/js/test/js_to_cpp_unittest.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'targets': [ 2 'targets': [
3 { 3 {
4 'target_name': 'mojo_js_lib', 4 'target_name': 'mojo_js_lib',
5 'type': 'static_library', 5 'type': 'static_library',
6 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../gin/gin.gyp:gin', 8 '../gin/gin.gyp:gin',
9 '../ui/gl/gl.gyp:gl', 9 '../ui/gl/gl.gyp:gl',
10 '../v8/tools/gyp/v8.gyp:v8', 10 '../v8/tools/gyp/v8.gyp:v8',
(...skipping 19 matching lines...) Expand all
30 'apps/js/bindings/threading.h', 30 'apps/js/bindings/threading.h',
31 'apps/js/bindings/gl/context.cc', 31 'apps/js/bindings/gl/context.cc',
32 'apps/js/bindings/gl/context.h', 32 'apps/js/bindings/gl/context.h',
33 'apps/js/bindings/gl/module.cc', 33 'apps/js/bindings/gl/module.cc',
34 'apps/js/bindings/gl/module.h', 34 'apps/js/bindings/gl/module.h',
35 'apps/js/bindings/monotonic_clock.cc', 35 'apps/js/bindings/monotonic_clock.cc',
36 'apps/js/bindings/monotonic_clock.h', 36 'apps/js/bindings/monotonic_clock.h',
37 ], 37 ],
38 }, 38 },
39 { 39 {
40 'target_name': 'mojo_apps_js_bindings',
41 'type': 'static_library',
42 'sources': [
43 'apps/js/test/js_to_cpp.mojom',
44 ],
45 'variables': {
46 'mojom_base_output_dir': 'mojo',
47 },
48 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
49 'export_dependent_settings': [
50 'mojo_cpp_bindings',
51 ],
52 'dependencies': [
53 'mojo_cpp_bindings',
54 ],
55 },
56 {
40 'target_name': 'mojo_apps_js_unittests', 57 'target_name': 'mojo_apps_js_unittests',
41 'type': 'executable', 58 'type': 'executable',
42 'dependencies': [ 59 'dependencies': [
43 '../gin/gin.gyp:gin_test', 60 '../gin/gin.gyp:gin_test',
61 'mojo_apps_js_bindings',
44 'mojo_common_lib', 62 'mojo_common_lib',
45 'mojo_common_test_support', 63 'mojo_common_test_support',
46 'mojo_js_lib', 64 'mojo_js_lib',
47 'mojo_run_all_unittests', 65 'mojo_run_all_unittests',
48 'mojo_public_test_interfaces', 66 'mojo_public_test_interfaces',
49 ], 67 ],
50 'sources': [ 68 'sources': [
51 'apps/js/test/js_to_cpp_unittest.cc', 69 'apps/js/test/js_to_cpp_unittest.cc',
52 'apps/js/test/run_apps_js_tests.cc', 70 'apps/js/test/run_apps_js_tests.cc',
53 ], 71 ],
(...skipping 24 matching lines...) Expand all
78 'mojo_apps_js_unittests.isolate', 96 'mojo_apps_js_unittests.isolate',
79 ], 97 ],
80 'sources': [ 98 'sources': [
81 'mojo_apps_js_unittests.isolate', 99 'mojo_apps_js_unittests.isolate',
82 ], 100 ],
83 }, 101 },
84 ], 102 ],
85 }], 103 }],
86 ], 104 ],
87 } 105 }
OLDNEW
« no previous file with comments | « mojo/apps/js/test/js_to_cpp_unittest.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698