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

Side by Side Diff: third_party/WebKit/Source/platform/heap/blink_heap.gypi

Issue 2091713002: Specialize base::IsWeakReceiver for Blink weak pointers to support base::Bind (1/5) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: +#include for build fix Created 4 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
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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 'StackFrameDepth.h', 67 'StackFrameDepth.h',
68 'ThreadState.cpp', 68 'ThreadState.cpp',
69 'ThreadState.h', 69 'ThreadState.h',
70 'ThreadingTraits.h', 70 'ThreadingTraits.h',
71 'TraceTraits.h', 71 'TraceTraits.h',
72 'Visitor.cpp', 72 'Visitor.cpp',
73 'Visitor.h', 73 'Visitor.h',
74 'WrapperVisitor.h', 74 'WrapperVisitor.h',
75 ], 75 ],
76 'platform_heap_test_files': [ 76 'platform_heap_test_files': [
77 'BlinkGCMemoryDumpProviderTest.cpp',
77 'HeapTest.cpp', 78 'HeapTest.cpp',
78 'BlinkGCMemoryDumpProviderTest.cpp', 79 'PersistentTest.cpp',
79 ], 80 ],
80 'conditions': [ 81 'conditions': [
81 ['target_arch == "arm"', { 82 ['target_arch == "arm"', {
82 'platform_heap_asm_files': [ 83 'platform_heap_asm_files': [
83 'asm/SaveRegisters_arm.S', 84 'asm/SaveRegisters_arm.S',
84 ], 85 ],
85 }], 86 }],
86 ['target_arch == "arm64"', { 87 ['target_arch == "arm64"', {
87 'platform_heap_asm_files': [ 88 'platform_heap_asm_files': [
88 'asm/SaveRegisters_arm64.S', 89 'asm/SaveRegisters_arm64.S',
(...skipping 10 matching lines...) Expand all
99 ], 100 ],
100 }], 101 }],
101 ['target_arch == "ia32" or target_arch == "x64"', { 102 ['target_arch == "ia32" or target_arch == "x64"', {
102 'platform_heap_asm_files': [ 103 'platform_heap_asm_files': [
103 'asm/SaveRegisters_x86.asm', 104 'asm/SaveRegisters_x86.asm',
104 ], 105 ],
105 }], 106 }],
106 ], 107 ],
107 }, 108 },
108 } 109 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698