Commit 615f8527 authored by saiarcot895's avatar saiarcot895 Committed by Commit bot

Fix GN bootstrap.

Update list of required files and compile flags.

BUG=None

Review-Url: https://codereview.chromium.org/2588003002
Cr-Commit-Position: refs/heads/master@{#439509}
parent 8b34cfe3
......@@ -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',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment