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

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: A few small tweaks 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
« no previous file with comments | « ash/DEPS ('k') | ash/display/display_color_manager_chromeos.h » ('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) 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 1008 matching lines...) Expand 10 before | Expand all | Expand 10 after
1019 'dependencies': [ 1019 'dependencies': [
1020 '../ui/events/ozone/events_ozone.gyp:events_ozone', 1020 '../ui/events/ozone/events_ozone.gyp:events_ozone',
1021 '../ui/ozone/ozone.gyp:ozone', 1021 '../ui/ozone/ozone.gyp:ozone',
1022 ], 1022 ],
1023 }], 1023 }],
1024 ['chromeos==1', { 1024 ['chromeos==1', {
1025 'dependencies': [ 1025 'dependencies': [
1026 '../chromeos/chromeos.gyp:chromeos', 1026 '../chromeos/chromeos.gyp:chromeos',
1027 # Ash #includes power_supply_properties.pb.h directly. 1027 # Ash #includes power_supply_properties.pb.h directly.
1028 '../chromeos/chromeos.gyp:power_manager_proto', 1028 '../chromeos/chromeos.gyp:power_manager_proto',
1029 '../components/components.gyp:quirks',
1029 '../device/bluetooth/bluetooth.gyp:device_bluetooth', 1030 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
1030 '../third_party/qcms/qcms.gyp:qcms', 1031 '../third_party/qcms/qcms.gyp:qcms',
1031 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources', 1032 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources',
1032 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_strings', 1033 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_strings',
1033 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos', 1034 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos',
1034 '../ui/display/display.gyp:display', 1035 '../ui/display/display.gyp:display',
1035 '../ui/display/display.gyp:display_util', 1036 '../ui/display/display.gyp:display_util',
1036 ], 1037 ],
1037 }, { # else: chromeos!=1 1038 }, { # else: chromeos!=1
1038 'sources!': [ 1039 'sources!': [
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
1221 'sources': [ 1222 'sources': [
1222 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_unscaled_resources.rc', 1223 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_unscaled_resources.rc',
1223 ], 1224 ],
1224 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1225 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1225 'msvs_disabled_warnings': [ 4267, ], 1226 'msvs_disabled_warnings': [ 4267, ],
1226 }], 1227 }],
1227 ['chromeos==1', { 1228 ['chromeos==1', {
1228 'dependencies': [ 1229 'dependencies': [
1229 '../chromeos/chromeos.gyp:chromeos_test_support_without_gmock', 1230 '../chromeos/chromeos.gyp:chromeos_test_support_without_gmock',
1230 '../chromeos/chromeos.gyp:power_manager_proto', 1231 '../chromeos/chromeos.gyp:power_manager_proto',
1232 '../components/components.gyp:quirks',
1231 '../device/bluetooth/bluetooth.gyp:device_bluetooth', 1233 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
1232 '../ui/display/display.gyp:display', 1234 '../ui/display/display.gyp:display',
1233 '../ui/display/display.gyp:display_test_support', 1235 '../ui/display/display.gyp:display_test_support',
1234 '../ui/display/display.gyp:display_test_util', 1236 '../ui/display/display.gyp:display_test_util',
1235 '../ui/display/display.gyp:display_types', 1237 '../ui/display/display.gyp:display_types',
1236 ], 1238 ],
1237 'sources': [ 1239 'sources': [
1238 'first_run/first_run_helper_unittest.cc', 1240 'first_run/first_run_helper_unittest.cc',
1239 ], 1241 ],
1240 }, { # else: chromeos!=1 1242 }, { # else: chromeos!=1
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
1358 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1360 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1359 ], 1361 ],
1360 } 1362 }
1361 ], 1363 ],
1362 ], 1364 ],
1363 }, 1365 },
1364 ], 1366 ],
1365 }], 1367 }],
1366 ], 1368 ],
1367 } 1369 }
OLDNEW
« no previous file with comments | « ash/DEPS ('k') | ash/display/display_color_manager_chromeos.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698