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

Side by Side Diff: Source/devtools/devtools.gyp

Issue 602753002: DevTools: Fix build target dependencies following r182595 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/devtools/BUILD.gn ('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 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 ], 104 ],
105 'outputs': ['<(PRODUCT_DIR)/resources/inspector/devtools_extensi on_api.js'], 105 'outputs': ['<(PRODUCT_DIR)/resources/inspector/devtools_extensi on_api.js'],
106 'action': ['python', '<@(_script_name)', '<@(_outputs)', '<@(dev tools_extension_api_files)'], 106 'action': ['python', '<@(_script_name)', '<@(_outputs)', '<@(dev tools_extension_api_files)'],
107 }], 107 }],
108 }, 108 },
109 { 109 {
110 'target_name': 'generate_devtools_grd', 110 'target_name': 'generate_devtools_grd',
111 'type': 'none', 111 'type': 'none',
112 'dependencies': [ 112 'dependencies': [
113 'devtools_html', 113 'devtools_html',
114 'toolbox_html',
114 'devtools_extension_api', 115 'devtools_extension_api',
115 'devtools_frontend_resources', 116 'devtools_frontend_resources',
116 ], 117 ],
117 'conditions': [ 118 'conditions': [
118 ['debug_devtools==0', { 119 ['debug_devtools==0', {
119 'actions': [{ 120 'actions': [{
120 'action_name': 'generate_devtools_grd', 121 'action_name': 'generate_devtools_grd',
121 'script_name': 'scripts/generate_devtools_grd.py', 122 'script_name': 'scripts/generate_devtools_grd.py',
122 'relative_path_dirs': [ 123 'relative_path_dirs': [
123 '<(PRODUCT_DIR)/resources/inspector', 124 '<(PRODUCT_DIR)/resources/inspector',
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 'build_settings_module', 277 'build_settings_module',
277 'build_source_frame_module', 278 'build_source_frame_module',
278 'build_sources_module', 279 'build_sources_module',
279 'build_temp_storage_shared_worker_module', 280 'build_temp_storage_shared_worker_module',
280 'build_timeline_module', 281 'build_timeline_module',
281 ], 282 ],
282 'conditions': [ 283 'conditions': [
283 ['debug_devtools==0', { # Release 284 ['debug_devtools==0', { # Release
284 'dependencies': [ 285 'dependencies': [
285 'devtools_html', 286 'devtools_html',
287 'toolbox_html',
286 'supported_css_properties', 288 'supported_css_properties',
287 'frontend_protocol_sources', 289 'frontend_protocol_sources',
288 'concatenated_module_descriptors', 290 'concatenated_module_descriptors',
289 ], 291 ],
290 'actions': [{ 292 'actions': [{
291 'action_name': 'build_applications', 293 'action_name': 'build_applications',
292 'script_name': 'scripts/build_applications.py', 294 'script_name': 'scripts/build_applications.py',
293 'helper_scripts': [ 295 'helper_scripts': [
294 'scripts/modular_build.py', 296 'scripts/modular_build.py',
295 'scripts/concatenate_application_code.py', 297 'scripts/concatenate_application_code.py',
(...skipping 723 matching lines...) Expand 10 before | Expand all | Expand 10 after
1019 ], 1021 ],
1020 'search_path': [ 'front_end' ], 1022 'search_path': [ 'front_end' ],
1021 'outputs': ['<(PRODUCT_DIR)/resources/inspector/devtools .css'], 1023 'outputs': ['<(PRODUCT_DIR)/resources/inspector/devtools .css'],
1022 'action': ['python', '<@(_script_name)', '<@(_input_styl esheet)', '<@(_outputs)'], 1024 'action': ['python', '<@(_script_name)', '<@(_input_styl esheet)', '<@(_outputs)'],
1023 }], 1025 }],
1024 }, 1026 },
1025 { 1027 {
1026 'target_name': 'concatenated_toolbox_css', 1028 'target_name': 'concatenated_toolbox_css',
1027 'type': 'none', 1029 'type': 'none',
1028 'dependencies': [ 1030 'dependencies': [
1029 'devtools_html' 1031 'toolbox_html',
1030 ], 1032 ],
1031 'actions': [{ 1033 'actions': [{
1032 'action_name': 'concatenate_toolbox_css', 1034 'action_name': 'concatenate_toolbox_css',
1033 'script_name': 'scripts/concatenate_css_files.py', 1035 'script_name': 'scripts/concatenate_css_files.py',
1034 'input_stylesheet': 'front_end/toolbox.css', 1036 'input_stylesheet': 'front_end/toolbox.css',
1035 'inputs': [ 1037 'inputs': [
1036 '<@(_script_name)', 1038 '<@(_script_name)',
1037 '<@(_input_stylesheet)', 1039 '<@(_input_stylesheet)',
1038 '<@(devtools_core_base_files)', 1040 '<@(devtools_core_base_files)',
1039 ], 1041 ],
(...skipping 15 matching lines...) Expand all
1055 '<@(devtools_module_json_files)', 1057 '<@(devtools_module_json_files)',
1056 ], 1058 ],
1057 'outputs': ['<(PRODUCT_DIR)/resources/inspector/Runtime. js'], 1059 'outputs': ['<(PRODUCT_DIR)/resources/inspector/Runtime. js'],
1058 'action': ['python', '<@(_script_name)', '<@(_input_file )', '<@(_outputs)', '<@(devtools_module_json_files)'], 1060 'action': ['python', '<@(_script_name)', '<@(_input_file )', '<@(_outputs)', '<@(devtools_module_json_files)'],
1059 }], 1061 }],
1060 }, 1062 },
1061 ], 1063 ],
1062 }], 1064 }],
1063 ], # conditions 1065 ], # conditions
1064 } 1066 }
OLDNEW
« no previous file with comments | « Source/devtools/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698