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

Side by Side Diff: tools/gyp/v8.gyp

Issue 1079006: Add basic C++ implementation of CPU profiler. (Closed)
Patch Set: Comments addressed Created 10 years, 9 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 | « test/cctest/test-profile-generator.cc ('k') | tools/v8.xcodeproj/project.pbxproj » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2009 the V8 project authors. All rights reserved. 1 # Copyright 2009 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 '../../src/compiler.cc', 246 '../../src/compiler.cc',
247 '../../src/compiler.h', 247 '../../src/compiler.h',
248 '../../src/contexts.cc', 248 '../../src/contexts.cc',
249 '../../src/contexts.h', 249 '../../src/contexts.h',
250 '../../src/conversions-inl.h', 250 '../../src/conversions-inl.h',
251 '../../src/conversions.cc', 251 '../../src/conversions.cc',
252 '../../src/conversions.h', 252 '../../src/conversions.h',
253 '../../src/counters.cc', 253 '../../src/counters.cc',
254 '../../src/counters.h', 254 '../../src/counters.h',
255 '../../src/cpu.h', 255 '../../src/cpu.h',
256 '../../src/cpu-profiler-inl.h',
257 '../../src/cpu-profiler.cc',
258 '../../src/cpu-profiler.h',
256 '../../src/data-flow.cc', 259 '../../src/data-flow.cc',
257 '../../src/data-flow.h', 260 '../../src/data-flow.h',
258 '../../src/dateparser.cc', 261 '../../src/dateparser.cc',
259 '../../src/dateparser.h', 262 '../../src/dateparser.h',
260 '../../src/dateparser-inl.h', 263 '../../src/dateparser-inl.h',
261 '../../src/debug.cc', 264 '../../src/debug.cc',
262 '../../src/debug.h', 265 '../../src/debug.h',
263 '../../src/debug-agent.cc', 266 '../../src/debug-agent.cc',
264 '../../src/debug-agent.h', 267 '../../src/debug-agent.h',
265 '../../src/disasm.h', 268 '../../src/disasm.h',
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
633 ], 636 ],
634 'conditions': [ 637 'conditions': [
635 [ 'OS=="win"', { 638 [ 'OS=="win"', {
636 # This could be gotten by not setting chromium_code, if that's OK. 639 # This could be gotten by not setting chromium_code, if that's OK.
637 'defines': ['_CRT_SECURE_NO_WARNINGS'], 640 'defines': ['_CRT_SECURE_NO_WARNINGS'],
638 }], 641 }],
639 ], 642 ],
640 }, 643 },
641 ], 644 ],
642 } 645 }
OLDNEW
« no previous file with comments | « test/cctest/test-profile-generator.cc ('k') | tools/v8.xcodeproj/project.pbxproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698