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

Unified Diff: tools/gn/bootstrap/bootstrap.py

Issue 2588003002: Fix GN bootstrap. (Closed)
Patch Set: Created 4 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/bootstrap/bootstrap.py
diff --git a/tools/gn/bootstrap/bootstrap.py b/tools/gn/bootstrap/bootstrap.py
index bfdf0fc1ce641a864907778531474988bfb90f8d..c3642e8f487cab9ee9d22ef6a4e5c20871593802 100755
--- a/tools/gn/bootstrap/bootstrap.py
+++ b/tools/gn/bootstrap/bootstrap.py
@@ -162,7 +162,10 @@ def build_gn_with_ninja_manually(tempdir, options):
{'USE_EXPERIMENTAL_ALLOCATOR_SHIM': 'true' if is_linux else 'false'})
write_buildflag_header_manually(root_gen_dir, 'base/debug/debugging_flags.h',
- {'ENABLE_PROFILING': 'false'})
+ {
+ 'ENABLE_PROFILING': 'false',
+ 'ENABLE_MEMORY_TASK_PROFILER': 'false'
+ })
if is_mac:
# //base/build_time.cc needs base/generated_build_date.h,
@@ -402,6 +405,7 @@ def write_gn_ninja(path, root_gen_dir, options):
'base/memory/ref_counted.cc',
'base/memory/ref_counted_memory.cc',
'base/memory/singleton.cc',
+ 'base/memory/shared_memory_helper.cc',
'base/memory/weak_ptr.cc',
'base/message_loop/incoming_task_queue.cc',
'base/message_loop/message_loop.cc',
@@ -456,6 +460,7 @@ def write_gn_ninja(path, root_gen_dir, options):
'base/task_scheduler/scheduler_worker_pool_impl.cc',
'base/task_scheduler/scheduler_worker_pool_params.cc',
'base/task_scheduler/scheduler_worker_stack.cc',
+ 'base/task_scheduler/scoped_set_task_priority_for_current_thread.cc',
'base/task_scheduler/sequence.cc',
'base/task_scheduler/sequence_sort_key.cc',
'base/task_scheduler/task.cc',
« 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