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

Side by Side Diff: ash/ash.gyp

Issue 1528963002: Quirks Client for downloading and providing display profiles (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Small cleanup Created 4 years, 9 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # These files lists are shared with the GN build. 8 # These files lists are shared with the GN build.
9 'ash_sources': [ 9 'ash_sources': [
10 'accelerators/accelerator_commands.cc', 10 'accelerators/accelerator_commands.cc',
(...skipping 1005 matching lines...) Expand 10 before | Expand all | Expand 10 after
1016 'dependencies': [ 1016 'dependencies': [
1017 '../ui/events/ozone/events_ozone.gyp:events_ozone', 1017 '../ui/events/ozone/events_ozone.gyp:events_ozone',
1018 '../ui/ozone/ozone.gyp:ozone', 1018 '../ui/ozone/ozone.gyp:ozone',
1019 ], 1019 ],
1020 }], 1020 }],
1021 ['chromeos==1', { 1021 ['chromeos==1', {
1022 'dependencies': [ 1022 'dependencies': [
1023 '../chromeos/chromeos.gyp:chromeos', 1023 '../chromeos/chromeos.gyp:chromeos',
1024 # Ash #includes power_supply_properties.pb.h directly. 1024 # Ash #includes power_supply_properties.pb.h directly.
1025 '../chromeos/chromeos.gyp:power_manager_proto', 1025 '../chromeos/chromeos.gyp:power_manager_proto',
1026 '../components/components.gyp:quirks',
1026 '../device/bluetooth/bluetooth.gyp:device_bluetooth', 1027 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
1027 '../third_party/qcms/qcms.gyp:qcms', 1028 '../third_party/qcms/qcms.gyp:qcms',
1028 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources', 1029 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources',
1029 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_strings', 1030 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_strings',
1030 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos', 1031 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos',
1031 '../ui/display/display.gyp:display', 1032 '../ui/display/display.gyp:display',
1032 '../ui/display/display.gyp:display_util', 1033 '../ui/display/display.gyp:display_util',
1033 ], 1034 ],
1034 }, { # else: chromeos!=1 1035 }, { # else: chromeos!=1
1035 'sources!': [ 1036 'sources!': [
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
1218 'sources': [ 1219 'sources': [
1219 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_unscaled_resources.rc', 1220 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_unscaled_resources.rc',
1220 ], 1221 ],
1221 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1222 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1222 'msvs_disabled_warnings': [ 4267, ], 1223 'msvs_disabled_warnings': [ 4267, ],
1223 }], 1224 }],
1224 ['chromeos==1', { 1225 ['chromeos==1', {
1225 'dependencies': [ 1226 'dependencies': [
1226 '../chromeos/chromeos.gyp:chromeos_test_support_without_gmock', 1227 '../chromeos/chromeos.gyp:chromeos_test_support_without_gmock',
1227 '../chromeos/chromeos.gyp:power_manager_proto', 1228 '../chromeos/chromeos.gyp:power_manager_proto',
1229 '../components/components.gyp:quirks',
1228 '../device/bluetooth/bluetooth.gyp:device_bluetooth', 1230 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
1229 '../ui/display/display.gyp:display', 1231 '../ui/display/display.gyp:display',
1230 '../ui/display/display.gyp:display_test_support', 1232 '../ui/display/display.gyp:display_test_support',
1231 '../ui/display/display.gyp:display_test_util', 1233 '../ui/display/display.gyp:display_test_util',
1232 '../ui/display/display.gyp:display_types', 1234 '../ui/display/display.gyp:display_types',
1233 ], 1235 ],
1234 'sources': [ 1236 'sources': [
1235 'first_run/first_run_helper_unittest.cc', 1237 'first_run/first_run_helper_unittest.cc',
1236 ], 1238 ],
1237 }, { # else: chromeos!=1 1239 }, { # else: chromeos!=1
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
1355 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1357 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1356 ], 1358 ],
1357 } 1359 }
1358 ], 1360 ],
1359 ], 1361 ],
1360 }, 1362 },
1361 ], 1363 ],
1362 }], 1364 }],
1363 ], 1365 ],
1364 } 1366 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698