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

Side by Side Diff: base/BUILD.gn

Issue 2888043009: fuchsia: Implement platform thread functions (Closed)
Patch Set: rebase Created 3 years, 7 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 | base/threading/platform_thread_fuchsia.cc » ('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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium 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 # HOW TO WRITE CONDITIONALS IN THIS FILE 5 # HOW TO WRITE CONDITIONALS IN THIS FILE
6 # ====================================== 6 # ======================================
7 # 7 #
8 # In many other places, one would write a conditional that expresses all the 8 # In many other places, one would write a conditional that expresses all the
9 # cases when a source file is used or unused, and then either add or subtract 9 # cases when a source file is used or unused, and then either add or subtract
10 # it from the sources list in that case 10 # it from the sources list in that case
(...skipping 1227 matching lines...) Expand 10 before | Expand all | Expand 10 after
1238 "message_loop/message_pump_libevent.h", 1238 "message_loop/message_pump_libevent.h",
1239 "process/kill_posix.cc", 1239 "process/kill_posix.cc",
1240 "process/launch_posix.cc", 1240 "process/launch_posix.cc",
1241 "process/process_handle_posix.cc", 1241 "process/process_handle_posix.cc",
1242 "process/process_posix.cc", 1242 "process/process_posix.cc",
1243 ] 1243 ]
1244 1244
1245 sources += [ 1245 sources += [
1246 "process/process_fuchsia.cc", 1246 "process/process_fuchsia.cc",
1247 "sys_info_fuchsia.cc", 1247 "sys_info_fuchsia.cc",
1248 "threading/platform_thread_fuchsia.cc",
1248 ] 1249 ]
1249 } 1250 }
1250 1251
1251 # NaCl. 1252 # NaCl.
1252 if (is_nacl) { 1253 if (is_nacl) {
1253 # We reset sources_assignment_filter in order to explicitly include 1254 # We reset sources_assignment_filter in order to explicitly include
1254 # the linux file (which would otherwise be filtered out). 1255 # the linux file (which would otherwise be filtered out).
1255 set_sources_assignment_filter([]) 1256 set_sources_assignment_filter([])
1256 sources += [ 1257 sources += [
1257 "files/file_path_watcher_stub.cc", 1258 "files/file_path_watcher_stub.cc",
(...skipping 1508 matching lines...) Expand 10 before | Expand all | Expand 10 after
2766 } 2767 }
2767 2768
2768 fuzzer_test("base_json_correctness_fuzzer") { 2769 fuzzer_test("base_json_correctness_fuzzer") {
2769 sources = [ 2770 sources = [
2770 "json/correctness_fuzzer.cc", 2771 "json/correctness_fuzzer.cc",
2771 ] 2772 ]
2772 deps = [ 2773 deps = [
2773 ":base", 2774 ":base",
2774 ] 2775 ]
2775 } 2776 }
OLDNEW
« no previous file with comments | « no previous file | base/threading/platform_thread_fuchsia.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698