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

Side by Side Diff: build/all.gyp

Issue 382333002: Introduce ChannelMojo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Renamed ChanelBuilder to ChannelFactory Created 6 years, 5 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 # A hook that can be overridden in other repositories to add additional 7 # A hook that can be overridden in other repositories to add additional
8 # compilation targets to 'All'. Only used on Android. 8 # compilation targets to 'All'. Only used on Android.
9 'android_app_targets%': [], 9 'android_app_targets%': [],
10 }, 10 },
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 '../third_party/re2/re2.gyp:re2', 72 '../third_party/re2/re2.gyp:re2',
73 '../chrome/chrome.gyp:*', 73 '../chrome/chrome.gyp:*',
74 '../cc/cc_tests.gyp:*', 74 '../cc/cc_tests.gyp:*',
75 '../device/bluetooth/bluetooth.gyp:*', 75 '../device/bluetooth/bluetooth.gyp:*',
76 '../device/device_tests.gyp:*', 76 '../device/device_tests.gyp:*',
77 '../device/usb/usb.gyp:*', 77 '../device/usb/usb.gyp:*',
78 '../gin/gin.gyp:*', 78 '../gin/gin.gyp:*',
79 '../gpu/gpu.gyp:*', 79 '../gpu/gpu.gyp:*',
80 '../gpu/tools/tools.gyp:*', 80 '../gpu/tools/tools.gyp:*',
81 '../ipc/ipc.gyp:*', 81 '../ipc/ipc.gyp:*',
82 '../ipc/mojo/ipc_mojo.gyp:*',
82 '../jingle/jingle.gyp:*', 83 '../jingle/jingle.gyp:*',
83 '../media/cast/cast.gyp:*', 84 '../media/cast/cast.gyp:*',
84 '../media/media.gyp:*', 85 '../media/media.gyp:*',
85 '../mojo/mojo.gyp:*', 86 '../mojo/mojo.gyp:*',
86 '../ppapi/ppapi.gyp:*', 87 '../ppapi/ppapi.gyp:*',
87 '../ppapi/ppapi_internal.gyp:*', 88 '../ppapi/ppapi_internal.gyp:*',
88 '../ppapi/tools/ppapi_tools.gyp:*', 89 '../ppapi/tools/ppapi_tools.gyp:*',
89 '../printing/printing.gyp:*', 90 '../printing/printing.gyp:*',
90 '../skia/skia.gyp:*', 91 '../skia/skia.gyp:*',
91 '../sync/tools/sync_tools.gyp:*', 92 '../sync/tools/sync_tools.gyp:*',
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 '../content/content_shell_and_tests.gyp:content_browsertests', 282 '../content/content_shell_and_tests.gyp:content_browsertests',
282 '../content/content_shell_and_tests.gyp:content_shell', 283 '../content/content_shell_and_tests.gyp:content_shell',
283 '../content/content_shell_and_tests.gyp:content_unittests', 284 '../content/content_shell_and_tests.gyp:content_unittests',
284 '../device/device_tests.gyp:device_unittests', 285 '../device/device_tests.gyp:device_unittests',
285 '../extensions/extensions.gyp:extensions_unittests', 286 '../extensions/extensions.gyp:extensions_unittests',
286 '../gin/gin.gyp:gin_unittests', 287 '../gin/gin.gyp:gin_unittests',
287 '../google_apis/google_apis.gyp:google_apis_unittests', 288 '../google_apis/google_apis.gyp:google_apis_unittests',
288 '../gpu/gles2_conform_support/gles2_conform_support.gyp:gles2_confor m_support', 289 '../gpu/gles2_conform_support/gles2_conform_support.gyp:gles2_confor m_support',
289 '../gpu/gpu.gyp:gpu_unittests', 290 '../gpu/gpu.gyp:gpu_unittests',
290 '../ipc/ipc.gyp:ipc_tests', 291 '../ipc/ipc.gyp:ipc_tests',
292 '../ipc/mojo/ipc_mojo.gyp:ipc_mojo_unittests',
291 '../jingle/jingle.gyp:jingle_unittests', 293 '../jingle/jingle.gyp:jingle_unittests',
292 '../media/cast/cast.gyp:cast_unittests', 294 '../media/cast/cast.gyp:cast_unittests',
293 '../media/media.gyp:media_unittests', 295 '../media/media.gyp:media_unittests',
294 '../mojo/mojo.gyp:mojo', 296 '../mojo/mojo.gyp:mojo',
295 '../ppapi/ppapi_internal.gyp:ppapi_unittests', 297 '../ppapi/ppapi_internal.gyp:ppapi_unittests',
296 '../remoting/remoting.gyp:remoting_unittests', 298 '../remoting/remoting.gyp:remoting_unittests',
297 '../third_party/WebKit/public/all.gyp:all_blink', 299 '../third_party/WebKit/public/all.gyp:all_blink',
298 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid ation_unittests', 300 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid ation_unittests',
299 '../third_party/leveldatabase/leveldatabase.gyp:env_chromium_unittes ts', 301 '../third_party/leveldatabase/leveldatabase.gyp:env_chromium_unittes ts',
300 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_ unittests', 302 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_ unittests',
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after
839 '../chrome/chrome.gyp:sync_integration_tests', 841 '../chrome/chrome.gyp:sync_integration_tests',
840 '../chrome/chrome.gyp:unit_tests', 842 '../chrome/chrome.gyp:unit_tests',
841 '../cloud_print/cloud_print.gyp:cloud_print_unittests', 843 '../cloud_print/cloud_print.gyp:cloud_print_unittests',
842 '../components/components_tests.gyp:components_unittests', 844 '../components/components_tests.gyp:components_unittests',
843 '../content/content_shell_and_tests.gyp:content_browsertests', 845 '../content/content_shell_and_tests.gyp:content_browsertests',
844 '../content/content_shell_and_tests.gyp:content_unittests', 846 '../content/content_shell_and_tests.gyp:content_unittests',
845 '../device/device_tests.gyp:device_unittests', 847 '../device/device_tests.gyp:device_unittests',
846 '../google_apis/gcm/gcm.gyp:gcm_unit_tests', 848 '../google_apis/gcm/gcm.gyp:gcm_unit_tests',
847 '../gpu/gpu.gyp:gpu_unittests', 849 '../gpu/gpu.gyp:gpu_unittests',
848 '../ipc/ipc.gyp:ipc_tests', 850 '../ipc/ipc.gyp:ipc_tests',
851 '../ipc/mojo/ipc_mojo.gyp:ipc_mojo_unittests',
849 '../jingle/jingle.gyp:jingle_unittests', 852 '../jingle/jingle.gyp:jingle_unittests',
850 '../media/media.gyp:media_unittests', 853 '../media/media.gyp:media_unittests',
851 '../ppapi/ppapi_internal.gyp:ppapi_unittests', 854 '../ppapi/ppapi_internal.gyp:ppapi_unittests',
852 '../printing/printing.gyp:printing_unittests', 855 '../printing/printing.gyp:printing_unittests',
853 '../remoting/remoting.gyp:remoting_unittests', 856 '../remoting/remoting.gyp:remoting_unittests',
854 '../rlz/rlz.gyp:*', 857 '../rlz/rlz.gyp:*',
855 '../sql/sql.gyp:sql_unittests', 858 '../sql/sql.gyp:sql_unittests',
856 '../sync/sync.gyp:sync_unit_tests', 859 '../sync/sync.gyp:sync_unit_tests',
857 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid ation_unittests', 860 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid ation_unittests',
858 '../third_party/leveldatabase/leveldatabase.gyp:env_chromium_unittes ts', 861 '../third_party/leveldatabase/leveldatabase.gyp:env_chromium_unittes ts',
(...skipping 16 matching lines...) Expand all
875 '../chrome/chrome.gyp:sync_integration_tests', 878 '../chrome/chrome.gyp:sync_integration_tests',
876 '../chrome/chrome.gyp:unit_tests', 879 '../chrome/chrome.gyp:unit_tests',
877 '../cloud_print/cloud_print.gyp:cloud_print_unittests', 880 '../cloud_print/cloud_print.gyp:cloud_print_unittests',
878 '../components/components_tests.gyp:components_unittests', 881 '../components/components_tests.gyp:components_unittests',
879 '../content/content_shell_and_tests.gyp:content_browsertests', 882 '../content/content_shell_and_tests.gyp:content_browsertests',
880 '../content/content_shell_and_tests.gyp:content_unittests', 883 '../content/content_shell_and_tests.gyp:content_unittests',
881 '../device/device_tests.gyp:device_unittests', 884 '../device/device_tests.gyp:device_unittests',
882 '../google_apis/gcm/gcm.gyp:gcm_unit_tests', 885 '../google_apis/gcm/gcm.gyp:gcm_unit_tests',
883 '../gpu/gpu.gyp:gpu_unittests', 886 '../gpu/gpu.gyp:gpu_unittests',
884 '../ipc/ipc.gyp:ipc_tests', 887 '../ipc/ipc.gyp:ipc_tests',
888 '../ipc/mojo/ipc_mojo.gyp:ipc_mojo_unittests',
885 '../jingle/jingle.gyp:jingle_unittests', 889 '../jingle/jingle.gyp:jingle_unittests',
886 '../media/media.gyp:media_unittests', 890 '../media/media.gyp:media_unittests',
887 '../ppapi/ppapi_internal.gyp:ppapi_unittests', 891 '../ppapi/ppapi_internal.gyp:ppapi_unittests',
888 '../printing/printing.gyp:printing_unittests', 892 '../printing/printing.gyp:printing_unittests',
889 '../remoting/remoting.gyp:remoting_unittests', 893 '../remoting/remoting.gyp:remoting_unittests',
890 '../sql/sql.gyp:sql_unittests', 894 '../sql/sql.gyp:sql_unittests',
891 '../sync/sync.gyp:sync_unit_tests', 895 '../sync/sync.gyp:sync_unit_tests',
892 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid ation_unittests', 896 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid ation_unittests',
893 '../third_party/leveldatabase/leveldatabase.gyp:env_chromium_unittes ts', 897 '../third_party/leveldatabase/leveldatabase.gyp:env_chromium_unittes ts',
894 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_ unittests', 898 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_ unittests',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
972 '../content/content_shell_and_tests.gyp:content_browsertests', 976 '../content/content_shell_and_tests.gyp:content_browsertests',
973 '../content/content_shell_and_tests.gyp:content_unittests', 977 '../content/content_shell_and_tests.gyp:content_unittests',
974 '../content/content_shell_and_tests.gyp:copy_test_netscape_plugin', 978 '../content/content_shell_and_tests.gyp:copy_test_netscape_plugin',
975 # ../chrome/test/mini_installer requires mini_installer. 979 # ../chrome/test/mini_installer requires mini_installer.
976 '../chrome/installer/mini_installer.gyp:mini_installer', 980 '../chrome/installer/mini_installer.gyp:mini_installer',
977 '../courgette/courgette.gyp:courgette_unittests', 981 '../courgette/courgette.gyp:courgette_unittests',
978 '../device/device_tests.gyp:device_unittests', 982 '../device/device_tests.gyp:device_unittests',
979 '../google_apis/gcm/gcm.gyp:gcm_unit_tests', 983 '../google_apis/gcm/gcm.gyp:gcm_unit_tests',
980 '../gpu/gpu.gyp:gpu_unittests', 984 '../gpu/gpu.gyp:gpu_unittests',
981 '../ipc/ipc.gyp:ipc_tests', 985 '../ipc/ipc.gyp:ipc_tests',
986 '../ipc/mojo/ipc_mojo.gyp:ipc_mojo_unittests',
982 '../jingle/jingle.gyp:jingle_unittests', 987 '../jingle/jingle.gyp:jingle_unittests',
983 '../media/media.gyp:media_unittests', 988 '../media/media.gyp:media_unittests',
984 '../ppapi/ppapi_internal.gyp:ppapi_unittests', 989 '../ppapi/ppapi_internal.gyp:ppapi_unittests',
985 '../printing/printing.gyp:printing_unittests', 990 '../printing/printing.gyp:printing_unittests',
986 '../remoting/remoting.gyp:remoting_unittests', 991 '../remoting/remoting.gyp:remoting_unittests',
987 '../sql/sql.gyp:sql_unittests', 992 '../sql/sql.gyp:sql_unittests',
988 '../sync/sync.gyp:sync_unit_tests', 993 '../sync/sync.gyp:sync_unit_tests',
989 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid ation_unittests', 994 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid ation_unittests',
990 '../third_party/leveldatabase/leveldatabase.gyp:env_chromium_unittes ts', 995 '../third_party/leveldatabase/leveldatabase.gyp:env_chromium_unittes ts',
991 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_ unittests', 996 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_ unittests',
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
1057 '../courgette/courgette.gyp:courgette_unittests', 1062 '../courgette/courgette.gyp:courgette_unittests',
1058 '../crypto/crypto.gyp:crypto_unittests', 1063 '../crypto/crypto.gyp:crypto_unittests',
1059 '../device/device_tests.gyp:device_unittests', 1064 '../device/device_tests.gyp:device_unittests',
1060 '../extensions/extensions.gyp:extensions_unittests', 1065 '../extensions/extensions.gyp:extensions_unittests',
1061 '../gin/gin.gyp:gin_unittests', 1066 '../gin/gin.gyp:gin_unittests',
1062 '../google_apis/gcm/gcm.gyp:gcm_unit_tests', 1067 '../google_apis/gcm/gcm.gyp:gcm_unit_tests',
1063 '../google_apis/google_apis.gyp:google_apis_unittests', 1068 '../google_apis/google_apis.gyp:google_apis_unittests',
1064 '../gpu/gpu.gyp:angle_unittests', 1069 '../gpu/gpu.gyp:angle_unittests',
1065 '../gpu/gpu.gyp:gpu_unittests', 1070 '../gpu/gpu.gyp:gpu_unittests',
1066 '../ipc/ipc.gyp:ipc_tests', 1071 '../ipc/ipc.gyp:ipc_tests',
1072 '../ipc/mojo/ipc_mojo.gyp:ipc_mojo_unittests',
1067 '../jingle/jingle.gyp:jingle_unittests', 1073 '../jingle/jingle.gyp:jingle_unittests',
1068 '../media/cast/cast.gyp:cast_unittests', 1074 '../media/cast/cast.gyp:cast_unittests',
1069 '../media/media.gyp:media_unittests', 1075 '../media/media.gyp:media_unittests',
1070 '../mojo/mojo.gyp:mojo', 1076 '../mojo/mojo.gyp:mojo',
1071 '../net/net.gyp:net_unittests', 1077 '../net/net.gyp:net_unittests',
1072 '../printing/printing.gyp:printing_unittests', 1078 '../printing/printing.gyp:printing_unittests',
1073 '../remoting/remoting.gyp:remoting_unittests', 1079 '../remoting/remoting.gyp:remoting_unittests',
1074 '../sql/sql.gyp:sql_unittests', 1080 '../sql/sql.gyp:sql_unittests',
1075 '../sync/sync.gyp:sync_unit_tests', 1081 '../sync/sync.gyp:sync_unit_tests',
1076 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid ation_unittests', 1082 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid ation_unittests',
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
1261 'dependencies': [ 1267 'dependencies': [
1262 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', 1268 '../ui/views/examples/examples.gyp:views_examples_with_content_exe',
1263 '../ui/views/views.gyp:views', 1269 '../ui/views/views.gyp:views',
1264 '../ui/views/views.gyp:views_unittests', 1270 '../ui/views/views.gyp:views_unittests',
1265 ], 1271 ],
1266 }, # target_name: macviews_builder 1272 }, # target_name: macviews_builder
1267 ], # targets 1273 ], # targets
1268 }], # os=='mac' and toolkit_views==1 1274 }], # os=='mac' and toolkit_views==1
1269 ], # conditions 1275 ], # conditions
1270 } 1276 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698