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

Unified Diff: components/scheduler/scheduler.gyp

Issue 2118903002: scheduler: Move the Blink scheduler into Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 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 side-by-side diff with in-line comments
Download patch
Index: components/scheduler/scheduler.gyp
diff --git a/components/scheduler/scheduler.gyp b/components/scheduler/scheduler.gyp
deleted file mode 100644
index 5afb0d9c360a8f7593d5c3d6e4f48acdcda45925..0000000000000000000000000000000000000000
--- a/components/scheduler/scheduler.gyp
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-{
- 'variables': {
- # This turns on e.g. the filename-based detection of which
- # platforms to include source files on (e.g. files ending in
- # _mac.h or _mac.cc are only compiled on MacOSX).
- 'chromium_code': 1,
- },
- 'includes': [
- 'scheduler.gypi',
- ],
- 'targets': [
- {
- # GN version: //components/scheduler:common
- 'target_name': 'scheduler_common',
- 'type': 'static_library',
- 'include_dirs': [
- '../..',
- ],
- 'sources': [
- '<@(scheduler_common_sources)',
- ],
- },
- {
- # GN version: //components/scheduler:scheduler
- 'target_name': 'scheduler',
- 'type': '<(component)',
- 'dependencies': [
- 'scheduler_common',
- '../../base/base.gyp:base',
- '../../cc/cc.gyp:cc',
- '../../third_party/WebKit/public/blink.gyp:blink',
- '../../ui/gfx/gfx.gyp:gfx',
- ],
- 'include_dirs': [
- '../..',
- ],
- 'defines': [
- 'SCHEDULER_IMPLEMENTATION',
- ],
- # Disable c4267 warnings until we fix size_t to int truncations.
- 'msvs_disabled_warnings': [ 4267, ],
- 'sources': [
- '<@(scheduler_sources)',
- ],
- 'export_dependent_settings': [
- '../../third_party/WebKit/public/blink.gyp:blink',
- ],
- },
- {
- # GN version: //components/scheduler:test_support
- 'target_name': 'scheduler_test_support',
- 'type': 'static_library',
- 'dependencies': [
- '../../third_party/WebKit/public/blink.gyp:blink',
- ],
- 'include_dirs': [
- '../..',
- ],
- 'sources': [
- '<@(scheduler_test_support_sources)',
- ],
- },
- ],
-}
« no previous file with comments | « components/scheduler/renderer/webthread_impl_for_renderer_scheduler_unittest.cc ('k') | components/scheduler/scheduler.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698