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

Side by Side Diff: src/inspector/inspector.gyp

Issue 2206943002: [inspector] fix GYP/MSVS build warnings. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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
« no previous file with comments | « no previous file | 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 # Copyright 2016 the V8 project authors. All rights reserved. 1 # Copyright 2016 the V8 project 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 { 'variables': { 5 { 'variables': {
6 'protocol_path': '../../third_party/WebKit/Source/platform/inspector_protoco l', 6 'protocol_path': '../../third_party/WebKit/Source/platform/inspector_protoco l',
7 'protocol_sources': [ 7 'protocol_sources': [
8 '<(SHARED_INTERMEDIATE_DIR)/inspector/Console.cpp', 8 '<(SHARED_INTERMEDIATE_DIR)/inspector/Console.cpp',
9 '<(SHARED_INTERMEDIATE_DIR)/inspector/Console.h', 9 '<(SHARED_INTERMEDIATE_DIR)/inspector/Console.h',
10 '<(SHARED_INTERMEDIATE_DIR)/inspector/Debugger.cpp', 10 '<(SHARED_INTERMEDIATE_DIR)/inspector/Debugger.cpp',
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 'dependencies': [ 62 'dependencies': [
63 'inspector_protocol_sources', 63 'inspector_protocol_sources',
64 ], 64 ],
65 'include_dirs+': [ 65 'include_dirs+': [
66 '<(protocol_path)/../..', 66 '<(protocol_path)/../..',
67 '<(SHARED_INTERMEDIATE_DIR)', 67 '<(SHARED_INTERMEDIATE_DIR)',
68 ], 68 ],
69 'defines': [ 69 'defines': [
70 'V8_INSPECTOR_USE_STL', 70 'V8_INSPECTOR_USE_STL',
71 ], 71 ],
72 'msvs_disabled_warnings': [
73 4267, # Truncation from size_t to int.
74 4305, # Truncation from 'type1' to 'type2'.
75 4324, # Struct padded due to declspec(align).
76 4714, # Function marked forceinline not inlined.
77 4800, # Value forced to bool.
78 4996, # Deprecated function call.
79 ],
72 'sources': [ 80 'sources': [
73 '<@(protocol_sources)', 81 '<@(protocol_sources)',
74 '<(protocol_path)/Allocator.h', 82 '<(protocol_path)/Allocator.h',
75 '<(protocol_path)/Array.h', 83 '<(protocol_path)/Array.h',
76 '<(protocol_path)/BackendCallback.h', 84 '<(protocol_path)/BackendCallback.h',
77 '<(protocol_path)/CodeGenerator.py', 85 '<(protocol_path)/CodeGenerator.py',
78 '<(protocol_path)/Collections.h', 86 '<(protocol_path)/Collections.h',
79 '<(protocol_path)/DispatcherBase.cpp', 87 '<(protocol_path)/DispatcherBase.cpp',
80 '<(protocol_path)/DispatcherBase.h', 88 '<(protocol_path)/DispatcherBase.h',
81 '<(protocol_path)/ErrorSupport.cpp', 89 '<(protocol_path)/ErrorSupport.cpp',
82 '<(protocol_path)/ErrorSupport.h', 90 '<(protocol_path)/ErrorSupport.h',
83 '<(protocol_path)/FrontendChannel.h', 91 '<(protocol_path)/FrontendChannel.h',
84 '<(protocol_path)/Maybe.h', 92 '<(protocol_path)/Maybe.h',
85 '<(protocol_path)/Object.cpp', 93 '<(protocol_path)/Object.cpp',
86 '<(protocol_path)/Object.h', 94 '<(protocol_path)/Object.h',
87 '<(protocol_path)/Parser.cpp', 95 '<(protocol_path)/Parser.cpp',
88 '<(protocol_path)/Parser.h', 96 '<(protocol_path)/Parser.h',
89 '<(protocol_path)/Platform.h', 97 '<(protocol_path)/Platform.h',
90 '<(protocol_path)/PlatformSTL.h', 98 '<(protocol_path)/PlatformSTL.h',
91 '<(protocol_path)/String16.h', 99 '<(protocol_path)/String16.h',
92 '<(protocol_path)/String16STL.cpp', 100 '<(protocol_path)/String16STL.cpp',
93 '<(protocol_path)/String16STL.h', 101 '<(protocol_path)/String16STL.h',
94 '<(protocol_path)/ValueConversions.h', 102 '<(protocol_path)/ValueConversions.h',
95 '<(protocol_path)/Values.cpp', 103 '<(protocol_path)/Values.cpp',
96 '<(protocol_path)/Values.h', 104 '<(protocol_path)/Values.h',
97 ] 105 ]
98 }, 106 },
99 ], 107 ],
100 } 108 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698