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

Side by Side Diff: BUILD.gn

Issue 1257303005: Editing iOS sources and dependencies. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Editing_IOS_dependencies
Patch Set: set_sources_assignment_filter(sources_assignment_filter) Created 5 years, 4 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/BUILD.gn » ('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 # This is the root build file for GN. GN will start processing by loading this 5 # This is the root build file for GN. GN will start processing by loading this
6 # file, and recursively load all dependencies until all dependencies are either 6 # file, and recursively load all dependencies until all dependencies are either
7 # resolved or known not to exist (which will cause the build to fail). So if 7 # resolved or known not to exist (which will cause the build to fail). So if
8 # you add a new build file, there must be some path of dependencies from this 8 # you add a new build file, there must be some path of dependencies from this
9 # file to your new one or GN won't know about it. 9 # file to your new one or GN won't know about it.
10 10
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 "//sandbox/linux:chrome_sandbox", 342 "//sandbox/linux:chrome_sandbox",
343 "//sandbox/linux:sandbox_linux_unittests", 343 "//sandbox/linux:sandbox_linux_unittests",
344 "//sandbox/linux:sandbox_linux_jni_unittests", 344 "//sandbox/linux:sandbox_linux_jni_unittests",
345 ] 345 ]
346 346
347 if (is_chromeos || use_ash) { 347 if (is_chromeos || use_ash) {
348 deps += [ "//components/session_manager/core" ] 348 deps += [ "//components/session_manager/core" ]
349 } 349 }
350 } 350 }
351 351
352 if (is_ios || is_win || (is_linux && !is_chromeos)) {
353 deps += [
354 "//base:base_i18n_perftests",
355 "//base:base_perftests",
356 ]
357 }
358
352 if (is_win || (is_linux && !is_chromeos)) { 359 if (is_win || (is_linux && !is_chromeos)) {
353 # TODO(GYP): Figure out which of these should (and can) build 360 # TODO(GYP): Figure out which of these should (and can) build
354 # for android/chromeos/mac/ios. 361 # for android/chromeos/mac/ios.
355 deps += [ 362 deps += [
356 "//base:base_perftests",
357 "//base:base_i18n_perftests",
358 "//base:check_example", 363 "//base:check_example",
359 "//base:build_utf8_validator_tables", 364 "//base:build_utf8_validator_tables",
360 "//cc:cc_perftests", 365 "//cc:cc_perftests",
361 "//cc/blink:cc_blink_unittests", 366 "//cc/blink:cc_blink_unittests",
362 "//chrome/test:load_library_perf_tests", 367 "//chrome/test:load_library_perf_tests",
363 "//chrome/test:performance_browser_tests", 368 "//chrome/test:performance_browser_tests",
364 "//chrome/test:sync_performance_tests", 369 "//chrome/test:sync_performance_tests",
365 "//chrome/test/chromedriver:chromedriver", 370 "//chrome/test/chromedriver:chromedriver",
366 "//chrome/test/chromedriver:chromedriver_tests", 371 "//chrome/test/chromedriver:chromedriver_tests",
367 "//chrome/tools/profile_reset:jtl_compiler", 372 "//chrome/tools/profile_reset:jtl_compiler",
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
926 "//ui/views:views_unittests", # TooltipControllerTest failures 931 "//ui/views:views_unittests", # TooltipControllerTest failures
927 "//ui/wm:wm_unittests", # PASSES 4/21/2015 932 "//ui/wm:wm_unittests", # PASSES 4/21/2015
928 "//url:url_unittests", # PASSES 4/17/2015 933 "//url:url_unittests", # PASSES 4/17/2015
929 934
930 # TODO(GYP) nacl_integration 935 # TODO(GYP) nacl_integration
931 # TODO(GYP) telemetry_perf_unittests 936 # TODO(GYP) telemetry_perf_unittests
932 # TODO(GYP) telemetry_unittests 937 # TODO(GYP) telemetry_unittests
933 ] 938 ]
934 } 939 }
935 } 940 }
OLDNEW
« no previous file with comments | « no previous file | base/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698